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