mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-16 18:37:04 +03:00
14 lines
384 B
Nix
14 lines
384 B
Nix
{ mkDerivation, lib, extra-cmake-modules, qtbase, qttools, gperf }:
|
|
|
|
mkDerivation {
|
|
name = "kcodecs";
|
|
meta = {
|
|
maintainers = [ lib.maintainers.ttuegel ];
|
|
broken = builtins.compareVersions qtbase.version "5.7.0" < 0;
|
|
};
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
buildInputs = [ qttools gperf ];
|
|
propagatedBuildInputs = [ qtbase ];
|
|
outputs = [ "out" "dev" ];
|
|
}
|