mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-16 18:53:17 +00:00
10 lines
251 B
Nix
10 lines
251 B
Nix
{ mkDerivation, extra-cmake-modules, qtbase, qttools, gperf }:
|
|
|
|
mkDerivation {
|
|
pname = "kcodecs";
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
buildInputs = [ qttools gperf ];
|
|
propagatedBuildInputs = [ qtbase ];
|
|
outputs = [ "out" "dev" ];
|
|
}
|