nixpkgs/pkgs/applications/kde/libkdcraw.nix

12 lines
251 B
Nix
Raw Normal View History

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