-
-
Notifications
You must be signed in to change notification settings - Fork 15.1k
/
Copy pathpackage.nix
80 lines (64 loc) · 1.81 KB
/
package.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
lib,
stdenvNoCC,
fetchFromGitHub,
just,
kdePackages,
flavor ? "mocha",
font ? "Noto Sans",
fontSize ? "9",
background ? null,
loginBackground ? false,
}:
stdenvNoCC.mkDerivation rec {
pname = "catppuccin-sddm";
version = "1.0.0";
src = fetchFromGitHub {
owner = "catppuccin";
repo = "sddm";
rev = "v${version}";
hash = "sha256-SdpkuonPLgCgajW99AzJaR8uvdCPi4MdIxS5eB+Q9WQ=";
};
dontWrapQtApps = true;
nativeBuildInputs = [
just
];
propagatedBuildInputs = [
kdePackages.qtsvg
];
buildPhase = ''
runHook preBuild
just build
runHook postBuild
'';
installPhase = ''
runHook preInstall
mkdir -p "$out/share/sddm/themes/"
cp -r dist/catppuccin-${flavor} "$out/share/sddm/themes/catppuccin-${flavor}"
configFile=$out/share/sddm/themes/catppuccin-${flavor}/theme.conf
substituteInPlace $configFile \
--replace-fail 'Font="Noto Sans"' 'Font="${font}"' \
--replace-fail 'FontSize=9' 'FontSize=${fontSize}'
${lib.optionalString (background != null) ''
substituteInPlace $configFile \
--replace-fail 'Background="backgrounds/wall.jpg"' 'Background="${background}"' \
--replace-fail 'CustomBackground="false"' 'CustomBackground="true"'
''}
${lib.optionalString loginBackground ''
substituteInPlace $configFile \
--replace-fail 'LoginBackground="false"' 'LoginBackground="true"'
''}
runHook postInstall
'';
postFixup = ''
mkdir -p $out/nix-support
echo ${kdePackages.qtsvg} >> $out/nix-support/propagated-user-env-packages
'';
meta = {
description = "Soothing pastel theme for SDDM";
homepage = "https://github.com/catppuccin/sddm";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ elysasrc ];
platforms = lib.platforms.linux;
};
}