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

9 lines
239 B
Nix
Raw Normal View History

{ kdeFramework, lib, extra-cmake-modules, qtbase, qttools }:
2016-04-21 08:32:21 -07:00
kdeFramework {
name = "kcodecs";
2016-07-30 07:36:52 -07:00
meta = { maintainers = [ lib.maintainers.ttuegel ]; };
nativeBuildInputs = [ extra-cmake-modules qttools ];
buildInputs = [ qtbase ];
2016-04-21 08:32:21 -07:00
}