nixpkgs/pkgs/tools/networking/inadyn/default.nix
R. RyanTM 75f0a6b65b
inadyn: 2.9.0 -> 2.9.1
* inadyn: 2.9.0 -> 2.9.1 (#154567)

* inadyn: fix homepage URI

Co-authored-by: Renaud <c0bw3b@users.noreply.github.com>
2022-01-13 19:13:25 +01:00

29 lines
703 B
Nix

{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config
, gnutls, libite, libconfuse }:
stdenv.mkDerivation rec {
pname = "inadyn";
version = "2.9.1";
src = fetchFromGitHub {
owner = "troglobit";
repo = "inadyn";
rev = "v${version}";
sha256 = "sha256-mHqy/cBw+pwJwzMzAmqIQcLkpc87dtYD11TMRXeWdUg=";
};
nativeBuildInputs = [ autoreconfHook pkg-config ];
buildInputs = [ gnutls libite libconfuse ];
enableParallelBuilding = true;
meta = with lib; {
homepage = "https://troglobit.com/projects/inadyn/";
description = "Free dynamic DNS client";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ ];
platforms = platforms.linux;
};
}