2018-07-20 17:44:44 -07:00
|
|
|
{ stdenv, fetchFromGitHub, 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 {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "inadyn";
|
2018-10-03 10:29:21 -07:00
|
|
|
version = "2.5";
|
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-10-03 10:29:21 -07:00
|
|
|
sha256 = "0izhynqfj4xafsrc653wym8arwps0qim203w8l0g5z9vzfxfnvqw";
|
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;
|
2018-07-22 12:50:19 -07:00
|
|
|
maintainers = with maintainers; [ ];
|
2017-11-16 04:38:14 -08:00
|
|
|
platforms = platforms.linux;
|
2011-04-07 13:26:26 -07:00
|
|
|
};
|
|
|
|
}
|