depot/pkgs/development/libraries/kde-frameworks/kcodecs.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
251 B
Nix
Raw Normal View History

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