1 { lib, stdenv, fetchFromGitHub, autoreconfHook, libtirpc, pkg-config }:
3 stdenv.mkDerivation rec {
7 src = fetchFromGitHub {
11 sha256 = "sha256-bCToqXVE4RZcoZ2eTNZcVHyzKlWyIpSAssQCOZcfmEA=";
14 outputs = [ "out" "dev" ];
16 nativeBuildInputs = [ autoreconfHook pkg-config ];
17 buildInputs = [ libtirpc ];
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;