Merge pull request #76513 from bignaux/ksudoku
ksudoku: init at 19.08.3
This commit is contained in:
commit
96e344e70e
|
@ -146,6 +146,7 @@ let
|
||||||
krdc = callPackage ./krdc.nix {};
|
krdc = callPackage ./krdc.nix {};
|
||||||
krfb = callPackage ./krfb.nix {};
|
krfb = callPackage ./krfb.nix {};
|
||||||
kruler = callPackage ./kruler.nix {};
|
kruler = callPackage ./kruler.nix {};
|
||||||
|
ksudoku = callPackage ./ksudoku.nix {};
|
||||||
ksystemlog = callPackage ./ksystemlog.nix {};
|
ksystemlog = callPackage ./ksystemlog.nix {};
|
||||||
ktnef = callPackage ./ktnef.nix {};
|
ktnef = callPackage ./ktnef.nix {};
|
||||||
ktouch = callPackage ./ktouch.nix {};
|
ktouch = callPackage ./ktouch.nix {};
|
||||||
|
|
|
@ -0,0 +1,18 @@
|
||||||
|
{ lib
|
||||||
|
, mkDerivation
|
||||||
|
, extra-cmake-modules
|
||||||
|
, libGLU
|
||||||
|
, kdoctools
|
||||||
|
, kdeclarative
|
||||||
|
, libkdegames
|
||||||
|
}:
|
||||||
|
|
||||||
|
mkDerivation {
|
||||||
|
name = "ksudoku";
|
||||||
|
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
|
||||||
|
buildInputs = [ libGLU kdeclarative libkdegames ];
|
||||||
|
meta = {
|
||||||
|
license = with lib.licenses; [ gpl2 ];
|
||||||
|
maintainers = with lib.maintainers; [ genesis ];
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in New Issue