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 {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "inadyn";
|
2020-04-01 15:14:11 +02:00
|
|
|
version = "2.7";
|
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}";
|
2020-04-01 15:14:11 +02:00
|
|
|
sha256 = "00jhayx0hfl9dw78d58bdxa5390bvxq73lz26q9h1gg1xw76adan";
|
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; {
|
2020-11-27 01:29:13 +01:00
|
|
|
homepage = "https://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
|
|
|
};
|
|
|
|
}
|