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
/
development
/
libraries
/
kde-frameworks
/
kcodecs.nix
blob
69a9e812494e690003402e32901856661e422a5d
1
{ mkDerivation, extra-cmake-modules, qtbase, qttools, gperf }:
2
3
mkDerivation {
4
pname = "kcodecs";
5
nativeBuildInputs = [ extra-cmake-modules ];
6
buildInputs = [ qttools gperf ];
7
propagatedBuildInputs = [ qtbase ];
8
outputs = [ "out" "dev" ];
9
}