summary refs log blame commit diff
path: root/pkgs/applications/kde/libkdcraw.nix
blob: 70e3cb0e1956587a2c8bbfd5ee254a362abb5f1b (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                                                           
 
              
                     



                                                      

                                              
                                     
                            
 
{ mkDerivation, lib, extra-cmake-modules, libraw, qtbase }:

mkDerivation {
  name = "libkdcraw";
  meta = {
    license = with lib.licenses; [ gpl2 lgpl21 bsd3 ];
    maintainers = [ lib.maintainers.ttuegel ];
  };
  nativeBuildInputs = [ extra-cmake-modules ];
  buildInputs = [ qtbase ];
  propagatedBuildInputs = [ libraw ];
  outputs = [ "out" "dev" ];
}