summary refs log blame commit diff
path: root/pkgs/applications/kde/picmi.nix
blob: 2e8dba2c1ce7da59604c3dfb0996fd927d630184 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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
  ];
}