2018-07-21 02:44:44 +02:00
|
|
|
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig
|
2017-08-01 00:52:50 +02:00
|
|
|
, gnutls, libite, libconfuse }:
|
2011-04-07 22:26:26 +02:00
|
|
|
|
2017-11-16 13:38:14 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2015-05-30 19:34:55 +02:00
|
|
|
name = "inadyn-${version}";
|
2018-10-03 19:29:21 +02:00
|
|
|
version = "2.5";
|
2011-04-07 22:26:26 +02:00
|
|
|
|
2017-11-16 13:38:14 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "troglobit";
|
|
|
|
repo = "inadyn";
|
|
|
|
rev = "v${version}";
|
2018-10-03 19:29:21 +02:00
|
|
|
sha256 = "0izhynqfj4xafsrc653wym8arwps0qim203w8l0g5z9vzfxfnvqw";
|
2011-04-07 22:26:26 +02:00
|
|
|
};
|
|
|
|
|
2016-09-19 00:28:46 +02:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
2017-11-16 13:38:14 +01:00
|
|
|
|
2016-09-19 00:28:46 +02:00
|
|
|
buildInputs = [ gnutls libite libconfuse ];
|
2014-11-26 23:37:50 +01:00
|
|
|
|
2017-11-16 13:38:14 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = http://troglobit.com/project/inadyn/;
|
2011-04-07 22:26:26 +02:00
|
|
|
description = "Free dynamic DNS client";
|
2017-11-16 13:38:14 +01:00
|
|
|
license = licenses.gpl2Plus;
|
2018-07-22 21:50:19 +02:00
|
|
|
maintainers = with maintainers; [ ];
|
2017-11-16 13:38:14 +01:00
|
|
|
platforms = platforms.linux;
|
2011-04-07 22:26:26 +02:00
|
|
|
};
|
|
|
|
}
|