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
biome: 1.9.2 -> 1.9.3
[NixPkgs.git]
/
pkgs
/
applications
/
kde
/
libkdegames.nix
blob
89d9626363ea4346ec26b0cb7128c5c941ae8257
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 = [ ];
24
};
25
}