nixpkgs/pkgs/tools/networking/inadyn/default.nix

29 lines
726 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, fetchpatch, autoreconfHook, pkgconfig
, gnutls, libite, libconfuse }:
stdenv.mkDerivation rec {
name = "inadyn-${version}";
2018-01-28 04:13:12 +03:00
version = "2.3";
src = fetchFromGitHub {
owner = "troglobit";
repo = "inadyn";
rev = "v${version}";
sha256 = "1nkrvd33mnj98m86g3xs27l88l2678qjzjhwpq1k9n8v9k255pd6";
};
2016-09-19 01:28:46 +03:00
nativeBuildInputs = [ autoreconfHook pkgconfig ];
2016-09-19 01:28:46 +03:00
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; [ viric ];
platforms = platforms.linux;
};
}