Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
45 lines
853 B
Nix
45 lines
853 B
Nix
{
|
|
stdenv,
|
|
lib,
|
|
fetchFromGitHub,
|
|
autoreconfHook,
|
|
libxcrypt,
|
|
libnsl,
|
|
libtirpc,
|
|
pkg-config,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libnss_nis";
|
|
version = "3.4";
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
libxcrypt
|
|
libnsl
|
|
libtirpc
|
|
];
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "thkukuk";
|
|
repo = "libnss_nis";
|
|
rev = "v${version}";
|
|
hash = "sha256-FWAyf4soSUpNrYzSefNWthEMfQEopfYX9pMDf1rNK6c=";
|
|
};
|
|
|
|
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.lgpl21Plus;
|
|
maintainers = with lib.maintainers; [ BarrOff ];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
}
|