8ac5e011d6
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
16 lines
356 B
Nix
16 lines
356 B
Nix
{ lib
|
|
, mkDerivation
|
|
, extra-cmake-modules
|
|
, kdoctools
|
|
, libkdegames, kconfig, kio, ktextwidgets
|
|
}:
|
|
|
|
mkDerivation {
|
|
name = "kolf";
|
|
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
|
|
buildInputs = [ libkdegames kio ktextwidgets ];
|
|
meta = {
|
|
license = with lib.licenses; [ gpl2 ];
|
|
maintainers = with lib.maintainers; [ peterhoeg ];
|
|
};
|
|
}
|