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