2018-07-21 01:44:44 +01:00
|
|
|
{ stdenv, fetchFromGitHub, 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 {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "inadyn";
|
2020-02-22 21:47:15 +00:00
|
|
|
version = "2.6";
|
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}";
|
2020-02-22 21:47:15 +00:00
|
|
|
sha256 = "013kxlglxliajv3lrsix4w88w40g709rvycajb6ad6gbh8giqv47";
|
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; {
|
2020-02-22 21:47:15 +00:00
|
|
|
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;
|
2018-07-22 20:50:19 +01:00
|
|
|
maintainers = with maintainers; [ ];
|
2017-11-16 12:38:14 +00:00
|
|
|
platforms = platforms.linux;
|
2011-04-07 21:26:26 +01:00
|
|
|
};
|
|
|
|
}
|