depot/pkgs/development/skaware-packages/nsss/default.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

31 lines
877 B
Nix

{ skawarePackages, skalibs }:
skawarePackages.buildPackage {
pname = "nsss";
version = "0.2.0.4";
sha256 = "ObUE+FvY9rUj0zTlz6YsAqOV2zWZG3XyBt8Ku9Z2Gq0=";
description = "Implementation of a subset of the pwd.h, group.h and shadow.h family of functions";
# TODO: nsss support
configureFlags = [
"--libdir=\${lib}/lib"
"--dynlibdir=\${lib}/lib"
"--bindir=\${bin}/bin"
"--includedir=\${dev}/include"
"--with-sysdeps=${skalibs.lib}/lib/skalibs/sysdeps"
"--with-include=${skalibs.dev}/include"
"--with-lib=${skalibs.lib}/lib"
"--with-dynlib=${skalibs.lib}/lib"
];
postInstall = ''
# remove all nsss executables from build directory
rm $(find -name "nsssd-*" -type f -mindepth 1 -maxdepth 1 -executable)
rm libnsss.* libnsssd.*
mv doc $doc/share/doc/nsss/html
mv examples $doc/share/doc/nsss/examples
'';
}