tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
hushboard: fix runtime error
Aliaksandr
5 months ago
2e0944ad
0fac6241
+9
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
hu
hushboard
package.nix
+9
pkgs/by-name/hu/hushboard/package.nix
···
9
9
librsvg,
10
10
wrapGAppsHook3,
11
11
nix-update-script,
12
12
+
fetchpatch,
12
13
}:
13
14
14
15
python3Packages.buildPythonApplication {
···
22
23
rev = "13f5e62add99355f90798006742f62397be8be0c";
23
24
hash = "sha256-z5ZSqcdKUHWt7kgW7ISZJei2YzVZHJGOqJ2IXv3qiWQ=";
24
25
};
26
26
+
27
27
+
patches = [
28
28
+
# https://github.com/stuartlangridge/hushboard/pull/30
29
29
+
(fetchpatch {
30
30
+
url = "https://github.com/stuartlangridge/hushboard/commit/b17b58cd00eb9af8184f8dcb010bbae7f9bc470c.patch";
31
31
+
hash = "sha256-C03hq2ttXY8DJzrarQvFIzo29d+owZVIHZRA28fq7Z8=";
32
32
+
})
33
33
+
];
25
34
26
35
build-system = with python3Packages; [ setuptools ];
27
36