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