29 lines
700 B
Nix
29 lines
700 B
Nix
|
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig
|
||
|
, gnutls, libite, libconfuse }:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
pname = "inadyn";
|
||
|
version = "2.6";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "troglobit";
|
||
|
repo = "inadyn";
|
||
|
rev = "v${version}";
|
||
|
sha256 = "013kxlglxliajv3lrsix4w88w40g709rvycajb6ad6gbh8giqv47";
|
||
|
};
|
||
|
|
||
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
||
|
|
||
|
buildInputs = [ gnutls libite libconfuse ];
|
||
|
|
||
|
enableParallelBuilding = true;
|
||
|
|
||
|
meta = with stdenv.lib; {
|
||
|
homepage = "http://troglobit.com/project/inadyn/";
|
||
|
description = "Free dynamic DNS client";
|
||
|
license = licenses.gpl2Plus;
|
||
|
maintainers = with maintainers; [ ];
|
||
|
platforms = platforms.linux;
|
||
|
};
|
||
|
}
|