nixpkgs/pkgs/desktops/kde-5/applications-16.04/libkdcraw.nix
2016-04-30 12:20:48 -05:00

20 lines
298 B
Nix

{ kdeApp
, lib
, extra-cmake-modules
, libraw
}:
kdeApp {
name = "libkdcraw";
meta = {
license = with lib.licenses; [ gpl2 lgpl21 bsd3 ];
maintainers = [ lib.maintainers.ttuegel ];
};
nativeBuildInputs = [
extra-cmake-modules
];
propagatedBuildInputs = [
libraw
];
}