Update skarnet.org software for 2.0 release.

New build system using configure script and GNU Make 4.0, and new
releases of the following using the new build system:

execline 2.0.0.0
s6 2.0.0.0
s6-dns 2.0.0.0
s6-linux-utils 2.0.0.0
s6-networking 2.0.0.0
s6-portable-utils 2.0.0.0
skalibs 2.0.0.0
This commit is contained in:
Patrick Mahoney
2014-12-23 15:24:30 -06:00
parent 59807bf947
commit 26e74d8a3e
11 changed files with 96 additions and 142 deletions
@@ -1,14 +1,14 @@
{ stdenv
, execline
, fetchurl
, gnumake40
, s6Dns
, skalibs
, skarnetConfCompile
}:
let
version = "0.1.0.0";
version = "2.0.0.0";
in stdenv.mkDerivation rec {
@@ -16,12 +16,25 @@ in stdenv.mkDerivation rec {
src = fetchurl {
url = "http://www.skarnet.org/software/s6-networking/${name}.tar.gz";
sha256 = "1np9m2j1i2450mbcjvpbb56kv3wc2fbyvmv2a039q61j2lk6vjz7";
sha256 = "0k2i0g5lsvh1gz90ixwdip1pngj9vd45d4fpmdg075vd8zhh7j37";
};
buildInputs = [ skalibs s6Dns execline skarnetConfCompile ];
dontDisableStatic = true;
sourceRoot = "net/${name}";
buildInputs = [ gnumake40 ];
configureFlags = [
"--with-sysdeps=${skalibs}/lib/skalibs/sysdeps"
"--with-include=${skalibs}/include"
"--with-include=${execline}/include"
"--with-include=${s6Dns}/include"
"--with-lib=${skalibs}/lib"
"--with-lib=${execline}/lib"
"--with-lib=${s6Dns}/lib"
"--with-dynlib=${skalibs}/lib"
"--with-dynlib=${execline}/lib"
"--with-dynlib=${s6Dns}/lib"
];
meta = {
homepage = http://www.skarnet.org/software/s6-networking/;