nixpkgs/pkgs/os-specific/linux/mdevd/default.nix
Alyssa Ross 593f8bde3c mdevd: 0.1.3.0 -> 0.1.4.0
• 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.
2021-06-16 07:59:51 +00:00

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
'';
}