commit
1537123876
@ -129,6 +129,7 @@ let
|
||||
kmix = callPackage ./kmix.nix {};
|
||||
kmplot = callPackage ./kmplot.nix {};
|
||||
knotes = callPackage ./knotes.nix {};
|
||||
kolf = callPackage ./kolf.nix {};
|
||||
kolourpaint = callPackage ./kolourpaint.nix {};
|
||||
kompare = callPackage ./kompare.nix {};
|
||||
konsole = callPackage ./konsole.nix {};
|
||||
|
16
pkgs/applications/kde/kolf.nix
Normal file
16
pkgs/applications/kde/kolf.nix
Normal file
@ -0,0 +1,16 @@
|
||||
{ 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 ];
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user