16 lines
220 B
Nix
16 lines
220 B
Nix
|
|
{
|
||
|
|
mkKdeDerivation,
|
||
|
|
lib,
|
||
|
|
replaceVars,
|
||
|
|
smartmontools,
|
||
|
|
}:
|
||
|
|
mkKdeDerivation {
|
||
|
|
pname = "plasma-disks";
|
||
|
|
|
||
|
|
patches = [
|
||
|
|
(replaceVars ./smartctl-path.patch {
|
||
|
|
smartctl = lib.getExe smartmontools;
|
||
|
|
})
|
||
|
|
];
|
||
|
|
}
|