tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
river-tag-overlay: fix cross
Alyssa Ross
2 years ago
dbed5465
36233d96
+12
-2
1 changed file
expand all
collapse all
unified
split
pkgs
applications
misc
river-tag-overlay
default.nix
+12
-2
pkgs/applications/misc/river-tag-overlay/default.nix
···
1
-
{ lib, stdenv, fetchFromSourcehut, nixos, wayland, pixman, pkg-config }:
0
0
2
3
stdenv.mkDerivation rec {
4
pname = "river-tag-overlay";
···
11
hash = "sha256-hLyXdLi/ldvwPJ1oQQsH5wgflQJuXu6vhYw/qdKAV9E=";
12
};
13
0
0
0
0
0
0
0
0
14
buildInputs = [ pixman wayland ];
15
-
nativeBuildInputs = [ pkg-config ];
16
17
makeFlags = [
18
"DESTDIR=${placeholder "out"}"
···
1
+
{ lib, stdenv, fetchFromSourcehut, fetchpatch
2
+
, wayland, pixman, pkg-config, wayland-scanner
3
+
}:
4
5
stdenv.mkDerivation rec {
6
pname = "river-tag-overlay";
···
13
hash = "sha256-hLyXdLi/ldvwPJ1oQQsH5wgflQJuXu6vhYw/qdKAV9E=";
14
};
15
16
+
patches = [
17
+
# Backport cross fix.
18
+
(fetchpatch {
19
+
url = "https://git.sr.ht/~leon_plickat/river-tag-overlay/commit/791eaadf46482121a4c811ffba13d03168d74d8f.patch";
20
+
sha256 = "CxSDcweHGup1EF3oD/2vhP6RFoeYorj0BwmlgA3tbPE=";
21
+
})
22
+
];
23
+
24
buildInputs = [ pixman wayland ];
25
+
nativeBuildInputs = [ pkg-config wayland-scanner ];
26
27
makeFlags = [
28
"DESTDIR=${placeholder "out"}"