Merge pull request #66933 from peterhoeg/p/kolf

kolf: init at 19.08.0
This commit is contained in:
Thomas Tuegel 2019-08-19 11:06:37 -05:00 committed by GitHub
commit 1537123876
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 17 additions and 0 deletions

View File

@ -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 {};

View 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 ];
};
}