tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
libgnurx: output libgnurx.a when static
Taeer Bar-Yam
4 years ago
c5e5ea90
61a31ad3
+5
1 changed file
expand all
collapse all
unified
split
pkgs
os-specific
windows
libgnurx
default.nix
+5
pkgs/os-specific/windows/libgnurx/default.nix
···
10
sha256 = "0xjxcxgws3bblybw5zsp9a4naz2v5bs1k3mk8dw00ggc0vwbfivi";
11
};
12
0
0
0
0
0
13
meta = {
14
platforms = lib.platforms.windows;
15
};
···
10
sha256 = "0xjxcxgws3bblybw5zsp9a4naz2v5bs1k3mk8dw00ggc0vwbfivi";
11
};
12
13
+
# file looks for libgnurx.a when compiling statically
14
+
postInstall = lib.optionalString stdenv.hostPlatform.isStatic ''
15
+
ln -s $out/lib/libgnurx{.dll.a,.a}
16
+
'';
17
+
18
meta = {
19
platforms = lib.platforms.windows;
20
};