mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-23 13:24:29 +00:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
32 lines
877 B
Nix
32 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
|
|
'';
|
|
|
|
}
|