depot/third_party/nixpkgs/pkgs/kde/plasma/plasma-disks/default.nix

17 lines
237 B
Nix
Raw Normal View History

{
mkKdeDerivation,
lib,
substituteAll,
smartmontools,
}:
mkKdeDerivation {
pname = "plasma-disks";
patches = [
(substituteAll {
smartctl = lib.getExe smartmontools;
src = ./smartctl-path.patch;
})
];
}