nixpkgs/pkgs/applications/kde/picmi.nix
2020-07-10 16:42:39 +02:00

18 lines
314 B
Nix

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