nixpkgs/pkgs/applications/kde/kolf.nix

17 lines
357 B
Nix
Raw Permalink Normal View History

2019-08-19 14:43:10 +00:00
{ lib
, mkDerivation
, extra-cmake-modules
, kdoctools
, libkdegames, kconfig, kio, ktextwidgets
}:
mkDerivation {
2020-12-24 23:05:07 +00:00
pname = "kolf";
2019-08-19 14:43:10 +00:00
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
buildInputs = [ libkdegames kio ktextwidgets ];
meta = {
license = with lib.licenses; [ gpl2 ];
maintainers = with lib.maintainers; [ peterhoeg ];
};
}