mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
28 lines
718 B
Nix
28 lines
718 B
Nix
{ lib, skawarePackages, skalibs }:
|
|
|
|
skawarePackages.buildPackage {
|
|
pname = "mdevd";
|
|
version = "0.1.6.4";
|
|
sha256 = "c1jOUwtrm++3FeSBkJgem2mhLMqFhRnm0uS0bqt+JHA=";
|
|
|
|
description = "mdev-compatible Linux hotplug manager daemon";
|
|
platforms = lib.platforms.linux;
|
|
|
|
outputs = [ "bin" "out" "dev" "doc" ];
|
|
|
|
configureFlags = [
|
|
"--with-sysdeps=${skalibs.lib}/lib/skalibs/sysdeps"
|
|
"--with-include=${skalibs.dev}/include"
|
|
"--with-lib=${skalibs.lib}/lib"
|
|
];
|
|
|
|
postInstall = ''
|
|
# remove all mdevd executables from build directory
|
|
rm $(find -type f -mindepth 1 -maxdepth 1 -executable)
|
|
rm libmdevd.*
|
|
|
|
mv doc $doc/share/doc/mdevd/html
|
|
mv examples $doc/share/doc/mdevd/examples
|
|
'';
|
|
}
|