mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
33 lines
806 B
Nix
33 lines
806 B
Nix
|
{ stdenv, skawarePackages }:
|
||
|
|
||
|
with skawarePackages;
|
||
|
|
||
|
buildPackage {
|
||
|
pname = "utmps";
|
||
|
version = "0.0.1.3";
|
||
|
sha256 = "0dwskdclac4afmh7f7zn6jdiydgaf59a65q43r6b813mghczjvvd";
|
||
|
|
||
|
description = "A secure utmpx and wtmp implementation";
|
||
|
|
||
|
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 execline executables from build directory
|
||
|
rm $(find -type f -mindepth 1 -maxdepth 1 -executable)
|
||
|
rm libutmps.*
|
||
|
|
||
|
mv doc $doc/share/doc/utmps/html
|
||
|
mv examples $doc/share/doc/utmps/examples
|
||
|
'';
|
||
|
}
|
||
|
|