nixpkgs/pkgs/development/libraries/libnsl/default.nix
2023-11-11 12:48:43 -05:00

27 lines
674 B
Nix

{ lib, stdenv, fetchFromGitHub, autoreconfHook, libtirpc, pkg-config }:
stdenv.mkDerivation rec {
pname = "libnsl";
version = "2.0.1";
src = fetchFromGitHub {
owner = "thkukuk";
repo = pname;
rev = "v${version}";
sha256 = "sha256-bCToqXVE4RZcoZ2eTNZcVHyzKlWyIpSAssQCOZcfmEA=";
};
outputs = [ "out" "dev" ];
nativeBuildInputs = [ autoreconfHook pkg-config ];
buildInputs = [ libtirpc ];
meta = with lib; {
description = "Client interface library for NIS(YP) and NIS+";
homepage = "https://github.com/thkukuk/libnsl";
license = licenses.lgpl21;
maintainers = [ maintainers.dezgeg ];
platforms = platforms.linux;
};
}