tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
swaysettings: 0.4.0 -> 0.5.0
emaryn
1 year ago
5f43e96a
dce71cf3
+20
-8
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
sw
swaysettings
package.nix
+20
-8
pkgs/by-name/sw/swaysettings/package.nix
···
24
stdenv,
25
vala,
26
wrapGAppsHook3,
0
0
0
0
0
0
27
}:
28
29
stdenv.mkDerivation rec {
30
pname = "swaysettings";
31
-
version = "0.4.0";
32
33
src = fetchFromGitHub {
34
owner = "ErikReider";
35
repo = "SwaySettings";
36
-
rev = "v${version}";
37
-
hash = "sha256-dn3n5DOAsw0FeXBkh19A2qB/5O+RyA2/Fj5PVtMOyL0=";
38
};
39
40
nativeBuildInputs = [
···
48
vala
49
wrapGAppsHook3
50
gobject-introspection
0
0
0
0
51
];
52
53
buildInputs = [
···
62
libhandy
63
libpulseaudio
64
libxml2
65
-
pantheon.granite
0
0
66
];
67
68
postPatch = ''
69
patchShebangs build-aux/meson/postinstall.py
70
'';
71
72
-
meta = with lib; {
73
description = "GUI for configuring your sway desktop";
74
longDescription = ''
75
Sway settings enables easy configuration of a sway desktop environment
76
such as selection of application or icon themes.
77
'';
78
homepage = "https://github.com/ErikReider/SwaySettings";
79
-
license = licenses.gpl3Plus;
80
-
platforms = platforms.linux;
81
-
maintainers = [ maintainers.aacebedo ];
82
};
83
}
···
24
stdenv,
25
vala,
26
wrapGAppsHook3,
27
+
blueprint-compiler,
28
+
gtk4,
29
+
libadwaita,
30
+
udisks,
31
+
libgtop,
32
+
gtk4-layer-shell,
33
}:
34
35
stdenv.mkDerivation rec {
36
pname = "swaysettings";
37
+
version = "0.5.0";
38
39
src = fetchFromGitHub {
40
owner = "ErikReider";
41
repo = "SwaySettings";
42
+
tag = "v${version}";
43
+
hash = "sha256-XP0Q3Q40cvAl3MEqShY+VMWjlCtqs9e91nkxocVNQQQ=";
44
};
45
46
nativeBuildInputs = [
···
54
vala
55
wrapGAppsHook3
56
gobject-introspection
57
+
blueprint-compiler
58
+
udisks
59
+
libgtop
60
+
gtk4-layer-shell
61
];
62
63
buildInputs = [
···
72
libhandy
73
libpulseaudio
74
libxml2
75
+
pantheon.granite7
76
+
gtk4
77
+
libadwaita
78
];
79
80
postPatch = ''
81
patchShebangs build-aux/meson/postinstall.py
82
'';
83
84
+
meta = {
85
description = "GUI for configuring your sway desktop";
86
longDescription = ''
87
Sway settings enables easy configuration of a sway desktop environment
88
such as selection of application or icon themes.
89
'';
90
homepage = "https://github.com/ErikReider/SwaySettings";
91
+
license = lib.licenses.gpl3Plus;
92
+
platforms = lib.platforms.linux;
93
+
maintainers = [ lib.maintainers.aacebedo ];
94
};
95
}