Nix: update dependencies

This commit is contained in:
wxlyyy
2025-11-30 00:29:51 +08:00
parent 993b6bc422
commit dc1c0e8f47
+2 -12
View File
@@ -13,11 +13,8 @@
matugen, matugen,
wlsunset, wlsunset,
wl-clipboard, wl-clipboard,
imagemagick,
gpu-screen-recorder, # optional gpu-screen-recorder, # optional
# fonts
makeFontsConf,
roboto,
inter-nerdfont,
}: let }: let
src = lib.cleanSourceWith { src = lib.cleanSourceWith {
src = ../.; src = ../.;
@@ -47,17 +44,11 @@
matugen matugen
wlsunset wlsunset
wl-clipboard wl-clipboard
imagemagick
] ]
++ lib.optionals (stdenvNoCC.hostPlatform.system == "x86_64-linux") [ ++ lib.optionals (stdenvNoCC.hostPlatform.system == "x86_64-linux") [
gpu-screen-recorder gpu-screen-recorder
]; ];
fontsConf = makeFontsConf {
fontDirectories = [
roboto
inter-nerdfont
];
};
in in
stdenvNoCC.mkDerivation { stdenvNoCC.mkDerivation {
pname = "noctalia-shell"; pname = "noctalia-shell";
@@ -80,7 +71,6 @@ in
preFixup = '' preFixup = ''
qtWrapperArgs+=( qtWrapperArgs+=(
--prefix PATH : ${lib.makeBinPath runtimeDeps} --prefix PATH : ${lib.makeBinPath runtimeDeps}
--set FONTCONFIG_FILE ${fontsConf}
--add-flags "-p $out/share/noctalia-shell" --add-flags "-p $out/share/noctalia-shell"
) )
''; '';