mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 13:37:21 +03:00
20 lines
288 B
Nix
20 lines
288 B
Nix
{ kdeApp
|
|
, lib
|
|
, extra-cmake-modules
|
|
, libraw
|
|
}:
|
|
|
|
kdeApp {
|
|
name = "libkdcraw";
|
|
nativeBuildInputs = [
|
|
extra-cmake-modules
|
|
];
|
|
buildInputs = [
|
|
libraw
|
|
];
|
|
meta = {
|
|
license = with lib.licenses; [ gpl2 lgpl21 bsd3 ];
|
|
maintainers = [ lib.maintainers.ttuegel ];
|
|
};
|
|
}
|