2021-01-17 03:51:22 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config
|
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";
|
2022-11-15 05:14:02 +00:00
|
|
|
version = "2.10.0";
|
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}";
|
2022-11-15 05:14:02 +00:00
|
|
|
sha256 = "sha256-PgG9ElIbJCr607ZrQcmuUcOwr8FSQW+cDytvaNLALnQ=";
|
2011-04-07 20:26:26 +00:00
|
|
|
};
|
|
|
|
|
2021-01-17 03:51:22 +00:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
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; {
|
2022-01-13 18:13:25 +00:00
|
|
|
homepage = "https://troglobit.com/projects/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
|
|
|
};
|
|
|
|
}
|