3
0
Fork 0
forked from mirrors/nixpkgs

inadyn: update to 1.99.15

It fixes a big bug about IP not getting updated.
https://github.com/troglobit/inadyn/issues/107
This commit is contained in:
Lluís Batlle i Rossell 2016-01-15 16:13:57 +01:00
parent 2ba13aa534
commit 5b20713041

View file

@ -1,16 +1,14 @@
{ stdenv, fetchFromGitHub, gnutls33, autoreconfHook }: { stdenv, fetchurl, gnutls33, autoreconfHook }:
let let
version = "1.99.13"; version = "1.99.15";
in in
stdenv.mkDerivation { stdenv.mkDerivation {
name = "inadyn-${version}"; name = "inadyn-${version}";
src = fetchFromGitHub { src = fetchurl {
repo = "inadyn"; url = "https://github.com/troglobit/inadyn/releases/download/${version}/inadyn-${version}.tar.xz";
owner = "troglobit"; sha256 = "05f7k9wpr0fn44y0pvdrv8xyilygmq3kjhvrwlj6dgg9ackdhkmm";
rev = version;
sha256 = "19z8si66b2kwb7y29qpd8y45rhg5wrycwkdgjqqp98sg5yq8p7v0";
}; };
preConfigure = '' preConfigure = ''