22 lines
282 B
Nix
22 lines
282 B
Nix
|
|
{
|
||
|
|
mkDerivation,
|
||
|
|
extra-cmake-modules,
|
||
|
|
qtbase,
|
||
|
|
qttools,
|
||
|
|
gperf,
|
||
|
|
}:
|
||
|
|
|
||
|
|
mkDerivation {
|
||
|
|
pname = "kcodecs";
|
||
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
||
|
|
buildInputs = [
|
||
|
|
qttools
|
||
|
|
gperf
|
||
|
|
];
|
||
|
|
propagatedBuildInputs = [ qtbase ];
|
||
|
|
outputs = [
|
||
|
|
"out"
|
||
|
|
"dev"
|
||
|
|
];
|
||
|
|
}
|