initial commit
This commit is contained in:
commit
c6b956ffa9
33 changed files with 3077 additions and 0 deletions
10
support/lib-zlib.nix
Normal file
10
support/lib-zlib.nix
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
{ mkMuslLib, pkgs, ... }:
|
||||
mkMuslLib {
|
||||
pname = "zlib-musl-static";
|
||||
src = pkgs.zlib.src;
|
||||
configurePhase = ''
|
||||
./configure --static --prefix=$out
|
||||
'';
|
||||
buildPhase = "make -j$NIX_BUILD_CORES";
|
||||
installPhase = "make install";
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue