tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
cozy: 0.7.2 -> 1.0.3
Alyssa Ross
4 years ago
fbaa499c
cc3a5e1e
+7
-4
1 changed file
expand all
collapse all
unified
split
pkgs
applications
audio
cozy-audiobooks
default.nix
+7
-4
pkgs/applications/audio/cozy-audiobooks/default.nix
···
8
, gtk3
9
, gst_all_1
10
, gobject-introspection
0
11
, python3Packages
12
, file
13
, cairo
14
, gettext
15
, gnome
0
16
}:
17
18
python3Packages.buildPythonApplication rec {
···
20
format = "other"; # no setup.py
21
22
pname = "cozy";
23
-
version = "0.7.2";
24
25
# Temporary fix
26
# See https://github.com/NixOS/nixpkgs/issues/57029
···
31
owner = "geigi";
32
repo = pname;
33
rev = version;
34
-
sha256 = "0fmbddi4ga0bppwg3rm3yjmf7jgqc6zfslmavnr1pglbzkjhy9fs";
35
};
36
37
nativeBuildInputs = [
···
47
cairo
48
gettext
49
gnome.adwaita-icon-theme
0
0
50
] ++ (with gst_all_1; [
51
gstreamer
52
gst-plugins-good
···
70
];
71
72
postPatch = ''
73
-
chmod +x meson/post_install.py
74
-
patchShebangs meson/post_install.py
75
'';
76
77
postInstall = ''
···
8
, gtk3
9
, gst_all_1
10
, gobject-introspection
11
+
, libhandy
12
, python3Packages
13
, file
14
, cairo
15
, gettext
16
, gnome
17
+
, pantheon
18
}:
19
20
python3Packages.buildPythonApplication rec {
···
22
format = "other"; # no setup.py
23
24
pname = "cozy";
25
+
version = "1.0.3";
26
27
# Temporary fix
28
# See https://github.com/NixOS/nixpkgs/issues/57029
···
33
owner = "geigi";
34
repo = pname;
35
rev = version;
36
+
sha256 = "0m0xiqpb87pwr3fhy0a4qxg67yjhwchcxj3x2anyy0li4inryxag";
37
};
38
39
nativeBuildInputs = [
···
49
cairo
50
gettext
51
gnome.adwaita-icon-theme
52
+
libhandy
53
+
pantheon.granite
54
] ++ (with gst_all_1; [
55
gstreamer
56
gst-plugins-good
···
74
];
75
76
postPatch = ''
77
+
patchShebangs meson/*.py
0
78
'';
79
80
postInstall = ''