Skip to content

Commit

Permalink
libnss_nis: init at 3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
BarrOff committed Nov 3, 2024
1 parent 6044521 commit aa434fb
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions pkgs/by-name/li/libnss_nis/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
{
stdenv,
lib,
fetchFromGitHub,
autoreconfHook,
libxcrypt,
libnsl,
libtirpc,
pkg-config,
}:

stdenv.mkDerivation rec {
pname = "libnss_nis";
version = "3.2";

nativeBuildInputs = [
autoreconfHook
pkg-config
];

buildInputs = [
libxcrypt
libnsl
libtirpc
];

src = fetchFromGitHub {
owner = "thkukuk";
repo = pname;
rev = "v${version}";
hash = "sha256-dt5wL+v98Heg6395BOwNssXLXmoOKFnRXGqlOknYYPs=";
};

outputs = [ "out" ];

meta = {
description = "NSS module for glibc, to provide NIS support for glibc.";
changelog = "https://github.com/thkukuk/libnss_nis/blob/master/NEWS";
homepage = "https://github.com/thkukuk/libnss_nis";
license = lib.licenses.lgpl21;
maintainers = with lib.maintainers; [ BarrOff ];
platforms = lib.platforms.linux;
};
}

0 comments on commit aa434fb

Please sign in to comment.