16 lines
305 B
Nix
16 lines
305 B
Nix
|
{ mkDerivation, lib
|
||
|
, extra-cmake-modules
|
||
|
}:
|
||
|
|
||
|
mkDerivation {
|
||
|
name = "kconfig";
|
||
|
nativeBuildInputs = [ extra-cmake-modules ];
|
||
|
postInstall = ''
|
||
|
wrapKDEProgram "$out/bin/kreadconfig5"
|
||
|
wrapKDEProgram "$out/bin/kwriteconfig5"
|
||
|
'';
|
||
|
meta = {
|
||
|
maintainers = [ lib.maintainers.ttuegel ];
|
||
|
};
|
||
|
}
|