tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
wdomirror: strictDeps
Artturin
3 years ago
fd0740f4
44c0f780
+9
-7
1 changed file
expand all
collapse all
unified
split
pkgs
tools
wayland
wdomirror
default.nix
+9
-7
pkgs/tools/wayland/wdomirror/default.nix
···
6
6
, pkg-config
7
7
, wayland
8
8
, wayland-protocols
9
9
-
, fetchurl
9
9
+
, fetchpatch
10
10
+
, wayland-scanner
10
11
}:
11
12
12
13
stdenv.mkDerivation {
···
20
21
sha256 = "1fz0sajhdjqas3l6mpik8w1k15wbv65hgh9r9vdgfqvw5l6cx7jv";
21
22
};
22
23
23
23
-
nativeBuildInputs = [ meson ninja pkg-config wayland-protocols ];
24
24
-
25
25
-
buildInputs = [ wayland ];
26
26
-
27
24
patches = [
28
25
# https://github.com/progandy/wdomirror/pull/7
29
29
-
(fetchurl {
26
26
+
(fetchpatch {
30
27
url = "https://github.com/progandy/wdomirror/commit/142632208e9ea2b4a4ebd784532efdb8cad7b87c.patch";
31
31
-
hash = "sha256-z6/8q2vOtmlGFbDVG5BVWWbLQT8kBvJXT9/oZkWS9gw=";
28
28
+
hash = "sha256-MG71IEwRAjjacAkRoB7Tn45+FbY7LAqTDkVJkoWuQUU=";
32
29
})
33
30
];
31
31
+
32
32
+
strictDeps = true;
33
33
+
nativeBuildInputs = [ meson ninja pkg-config wayland-scanner ];
34
34
+
35
35
+
buildInputs = [ wayland wayland-protocols ];
34
36
35
37
installPhase = ''
36
38
runHook preInstall