nixpkgs/pkgs/applications/kde/picmi.nix

18 lines
314 B
Nix
Raw Normal View History

2020-07-10 14:42:39 +00:00
{ 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
];
}