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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

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;
})
];
}