inadyn: fix & update from 1.99.10 to 1.99.13

This commit is contained in:
Pascal Wittmann 2015-05-14 19:36:09 +02:00
parent 21c73b63b8
commit 9ac11fb2ef
1 changed files with 9 additions and 7 deletions

View File

@ -1,21 +1,23 @@
{ stdenv, fetchurl, gnutls }: { stdenv, fetchFromGitHub, gnutls33 }:
let let
ver = "1.99.10"; version = "1.99.13";
in in
stdenv.mkDerivation { stdenv.mkDerivation {
name = "inadyn-${ver}"; name = "inadny-${version}";
src = fetchurl { src = fetchFromGitHub {
url = "https://github.com/troglobit/inadyn/archive/${ver}.tar.gz"; repo = "inadyn";
sha256 = "0m3qnnq99siwf1ybcvbzdawk68lxf61vd13fw1f2ssl2m07hfxg3"; owner = "troglobit";
rev = version;
sha256 = "19z8si66b2kwb7y29qpd8y45rhg5wrycwkdgjqqp98sg5yq8p7v0";
}; };
preConfigure = '' preConfigure = ''
export makeFlags=prefix=$out export makeFlags=prefix=$out
''; '';
buildInputs = [ gnutls ]; buildInputs = [ gnutls33 ];
NIX_CFLAGS_COMPILE = "-Wno-error=cpp"; NIX_CFLAGS_COMPILE = "-Wno-error=cpp";