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

29 lines
702 B
Nix
Raw Normal View History

2021-01-17 04:51:22 +01:00
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config
, gnutls, libite, libconfuse }:
stdenv.mkDerivation rec {
pname = "inadyn";
2021-02-03 15:57:56 +01:00
version = "2.8.1";
src = fetchFromGitHub {
owner = "troglobit";
repo = "inadyn";
rev = "v${version}";
2021-02-03 15:57:56 +01:00
sha256 = "sha256-kr9xh7HMikargi0hhj3epH2c6R5lN4qD9nDaChNI4Kg=";
};
2021-01-17 04:51:22 +01:00
nativeBuildInputs = [ autoreconfHook pkg-config ];
2016-09-19 00:28:46 +02:00
buildInputs = [ gnutls libite libconfuse ];
enableParallelBuilding = true;
meta = with lib; {
homepage = "https://troglobit.com/project/inadyn/";
description = "Free dynamic DNS client";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ ];
platforms = platforms.linux;
};
}