nixpkgs/pkgs/applications/kde/libkdcraw.nix

14 lines
361 B
Nix
Raw Permalink Normal View History

{ mkDerivation, lib, extra-cmake-modules, libraw, qtbase }:
mkDerivation {
2020-12-24 23:05:07 +00:00
pname = "libkdcraw";
meta = {
license = with lib.licenses; [ gpl2 lgpl21 bsd3 ];
maintainers = [ lib.maintainers.ttuegel ];
};
nativeBuildInputs = [ extra-cmake-modules ];
buildInputs = [ qtbase ];
propagatedBuildInputs = [ libraw ];
2017-06-21 13:51:42 +00:00
outputs = [ "out" "dev" ];
}