base16-schemes: unstable-2024-06-21 -> unstable-2024-11-12
[NixPkgs.git] / pkgs / by-name / li / libnsl / package.nix
blobb199406918abd48c0e88cf2510d76a353be27f7f
1 { lib, stdenv, fetchFromGitHub, autoreconfHook, libtirpc, pkg-config }:
3 stdenv.mkDerivation rec {
4   pname = "libnsl";
5   version = "2.0.1";
7   src = fetchFromGitHub {
8     owner = "thkukuk";
9     repo = pname;
10     rev = "v${version}";
11     sha256 = "sha256-bCToqXVE4RZcoZ2eTNZcVHyzKlWyIpSAssQCOZcfmEA=";
12   };
14   outputs = [ "out" "dev" ];
16   nativeBuildInputs = [ autoreconfHook pkg-config ];
17   buildInputs = [ libtirpc ];
19   meta = with lib; {
20     description = "Client interface library for NIS(YP) and NIS+";
21     homepage = "https://github.com/thkukuk/libnsl";
22     license = licenses.lgpl21;
23     maintainers = [ maintainers.dezgeg ];
24     platforms = platforms.linux;
25   };