2016-09-18 15:28:46 -07:00
|
|
|
{ stdenv, fetchurl, gnutls, autoreconfHook, pkgconfig, libite, libconfuse }:
|
2011-04-07 13:26:26 -07:00
|
|
|
|
2014-10-10 08:01:10 -07:00
|
|
|
let
|
2016-09-18 15:28:46 -07:00
|
|
|
version = "2.0";
|
2014-10-10 08:01:10 -07:00
|
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
2015-05-30 10:34:55 -07:00
|
|
|
name = "inadyn-${version}";
|
2011-04-07 13:26:26 -07:00
|
|
|
|
2016-01-15 07:13:57 -08:00
|
|
|
src = fetchurl {
|
2016-09-18 15:28:46 -07:00
|
|
|
url = "https://github.com/troglobit/inadyn/releases/download/v${version}/inadyn-${version}.tar.xz";
|
|
|
|
sha256 = "16nmbxj337vkqkk6f7vx7fa8mczjv6dl3ybaxy16c23h486y0mzh";
|
2011-04-07 13:26:26 -07:00
|
|
|
};
|
|
|
|
|
2016-09-18 15:28:46 -07:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
|
|
|
buildInputs = [ gnutls libite libconfuse ];
|
2014-11-26 14:37:50 -08:00
|
|
|
|
2011-04-07 13:26:26 -07:00
|
|
|
meta = {
|
|
|
|
homepage = http://inadyn.sourceforge.net/;
|
|
|
|
description = "Free dynamic DNS client";
|
2014-06-18 21:19:00 -07:00
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
2011-04-07 13:26:26 -07:00
|
|
|
maintainers = with stdenv.lib.maintainers; [viric];
|
2016-09-01 10:39:33 -07:00
|
|
|
platforms = with stdenv.lib.platforms; linux;
|
2011-04-07 13:26:26 -07:00
|
|
|
};
|
|
|
|
}
|