picmi: init at 19.12.3

This commit is contained in:
freezeboy 2020-07-10 16:42:39 +02:00
parent 0416089dc6
commit 219f773d3b
2 changed files with 18 additions and 0 deletions

View File

@ -174,6 +174,7 @@ let
messagelib = callPackage ./messagelib.nix {};
minuet = callPackage ./minuet.nix {};
okular = callPackage ./okular.nix {};
picmi = callPackage ./picmi {};
pimcommon = callPackage ./pimcommon.nix {};
pim-data-exporter = callPackage ./pim-data-exporter.nix {};
pim-sieve-editor = callPackage ./pim-sieve-editor.nix {};

View File

@ -0,0 +1,17 @@
{ mkDerivation, lib
, libkdegames, extra-cmake-modules
, kdeclarative, knewstuff
}:
mkDerivation {
name = "picmi";
meta = with lib; { maintainers = with maintainers; [ freezeboy ]; };
nativeBuildInputs = [
extra-cmake-modules
];
buildInputs = [
kdeclarative
knewstuff
libkdegames
];
}