2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkgconfig
|
2017-07-31 22:52:50 +00:00
|
|
|
, gnutls, libite, libconfuse }:
|
2011-04-07 20:26:26 +00:00
|
|
|
|
2017-11-16 12:38:14 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "inadyn";
|
2020-04-01 13:14:11 +00:00
|
|
|
version = "2.7";
|
2011-04-07 20:26:26 +00:00
|
|
|
|
2017-11-16 12:38:14 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "troglobit";
|
|
|
|
repo = "inadyn";
|
|
|
|
rev = "v${version}";
|
2020-04-01 13:14:11 +00:00
|
|
|
sha256 = "00jhayx0hfl9dw78d58bdxa5390bvxq73lz26q9h1gg1xw76adan";
|
2011-04-07 20:26:26 +00:00
|
|
|
};
|
|
|
|
|
2016-09-18 22:28:46 +00:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
2017-11-16 12:38:14 +00:00
|
|
|
|
2016-09-18 22:28:46 +00:00
|
|
|
buildInputs = [ gnutls libite libconfuse ];
|
2014-11-26 22:37:50 +00:00
|
|
|
|
2017-11-16 12:38:14 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-11-27 00:29:13 +00:00
|
|
|
homepage = "https://troglobit.com/project/inadyn/";
|
2011-04-07 20:26:26 +00:00
|
|
|
description = "Free dynamic DNS client";
|
2017-11-16 12:38:14 +00:00
|
|
|
license = licenses.gpl2Plus;
|
2018-07-22 19:50:19 +00:00
|
|
|
maintainers = with maintainers; [ ];
|
2017-11-16 12:38:14 +00:00
|
|
|
platforms = platforms.linux;
|
2011-04-07 20:26:26 +00:00
|
|
|
};
|
|
|
|
}
|