00b57f47c7
skalibs 2.3.2.0 execline 2.1.1.0 s6 2.1.3.0 st-portable-utils 2.0.4.0 s6-linux-utils 2.0.2.0 s6-networking 2.1.0.0 Also change path to s6 static library in s6-networking build.
35 lines
854 B
Nix
35 lines
854 B
Nix
{ stdenv, fetchgit }:
|
|
|
|
let
|
|
|
|
version = "2.3.2.0";
|
|
|
|
in stdenv.mkDerivation rec {
|
|
|
|
name = "skalibs-${version}";
|
|
|
|
src = fetchgit {
|
|
url = "git://git.skarnet.org/skalibs";
|
|
rev = "refs/tags/v${version}";
|
|
sha256 = "1l7f2zmas0w28j19g46bvm13j3cx7jimxifivd04zz5r7g79ik5a";
|
|
};
|
|
|
|
dontDisableStatic = true;
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
configureFlags = [
|
|
"--enable-force-devr" # assume /dev/random works
|
|
"--libdir=\${prefix}/lib"
|
|
"--includedir=\${prefix}/include"
|
|
"--sysdepdir=\${prefix}/lib/skalibs/sysdeps"
|
|
] ++ (if stdenv.isDarwin then [ "--disable-shared" ] else [ "--enable-shared" ]);
|
|
|
|
meta = {
|
|
homepage = http://skarnet.org/software/skalibs/;
|
|
description = "A set of general-purpose C programming libraries";
|
|
platforms = stdenv.lib.platforms.all;
|
|
license = stdenv.lib.licenses.isc;
|
|
};
|
|
|
|
}
|