tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
lzfse: use cmake build system
this builds .so correctly
Matthew Bauer
5 years ago
d1c2a9ed
e5a097a8
+2
-4
1 changed file
expand all
collapse all
unified
split
pkgs
tools
compression
lzfse
default.nix
+2
-4
pkgs/tools/compression/lzfse/default.nix
···
1
-
{ stdenv, fetchFromGitHub }:
2
3
stdenv.mkDerivation rec {
4
pname = "lzfse";
···
11
sha256 = "1mfh6y6vpvxsdwmqmfbkqkwvxc0pz2dqqc72c6fk9sbsrxxaghd5";
12
};
13
14
-
makeFlags = [ "INSTALL_PREFIX=$(out)" ];
15
-
16
-
enableParallelBuilding = false; #bug
17
18
meta = with stdenv.lib; {
19
homepage = "https://github.com/lzfse/lzfse";
···
1
+
{ stdenv, fetchFromGitHub, cmake }:
2
3
stdenv.mkDerivation rec {
4
pname = "lzfse";
···
11
sha256 = "1mfh6y6vpvxsdwmqmfbkqkwvxc0pz2dqqc72c6fk9sbsrxxaghd5";
12
};
13
14
+
nativeBuildInputs = [ cmake ];
0
0
15
16
meta = with stdenv.lib; {
17
homepage = "https://github.com/lzfse/lzfse";