2021-01-17 04:51:22 +01:00
|
|
|
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config
|
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";
|
2021-02-03 15:57:56 +01:00
|
|
|
version = "2.8.1";
|
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}";
|
2021-02-03 15:57:56 +01:00
|
|
|
sha256 = "sha256-kr9xh7HMikargi0hhj3epH2c6R5lN4qD9nDaChNI4Kg=";
|
2011-04-07 22:26:26 +02:00
|
|
|
};
|
|
|
|
|
2021-01-17 04:51:22 +01:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
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;
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with 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
|
|
|
};
|
|
|
|
}
|