repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git]
/
pkgs
/
applications
/
kde
/
libkdegames.nix
blob
8e96bc1ad56c5ce529c1ff2e5350370ef82c5025
1
{ lib
2
, mkDerivation
3
, extra-cmake-modules
4
, kdoctools
5
, qtdeclarative
6
, kdeclarative
7
, kdnssd
8
, knewstuff
9
, openal
10
, libsndfile
11
, qtquickcontrols
12
}:
13
14
mkDerivation {
15
pname = "libkdegames";
16
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
17
buildInputs = [
18
qtdeclarative kdeclarative kdnssd knewstuff openal libsndfile
19
qtquickcontrols
20
];
21
meta = {
22
license = with lib.licenses; [ gpl2 ];
23
maintainers = with lib.maintainers; [ lheckemann ];
24
};
25
}