15 lines
262 B
Nix
15 lines
262 B
Nix
|
{ mkDerivation, lib
|
||
|
, extra-cmake-modules
|
||
|
}:
|
||
|
|
||
|
mkDerivation {
|
||
|
name = "solid";
|
||
|
nativeBuildInputs = [ extra-cmake-modules ];
|
||
|
postInstall = ''
|
||
|
wrapKDEProgram "$out/bin/solid-hardware5"
|
||
|
'';
|
||
|
meta = {
|
||
|
maintainers = [ lib.maintainers.ttuegel ];
|
||
|
};
|
||
|
}
|