593f8bde3c
• skalibs dependency bumped to 2.10.0.3. • New +, - and & command directives supported in mdev.conf. These directives spawn a command interpreted by the execlineb program launcher instead of /bin/sh.
29 lines
706 B
Nix
29 lines
706 B
Nix
{ lib, skawarePackages }:
|
|
|
|
with skawarePackages;
|
|
|
|
buildPackage {
|
|
pname = "mdevd";
|
|
version = "0.1.4.0";
|
|
sha256 = "1lnwk7qa6x7iia0v12i2jckg42ypi35hk3sa7cjm23ngnhiv5lzz";
|
|
|
|
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)
|
|
|
|
mv doc $doc/share/doc/mdevd/html
|
|
mv examples $doc/share/doc/mdevd/examples
|
|
'';
|
|
}
|