mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-17 06:06:13 +03:00
cf5ed04f49
Provide a globally unique name (kdeApp) instead of using attribute paths as namespaces and locally overloading the mkDerivation name.
38 lines
491 B
Nix
38 lines
491 B
Nix
{ kdeApp
|
|
, lib
|
|
, extra-cmake-modules
|
|
, kdoctools
|
|
, baloo
|
|
, exiv2
|
|
, kactivities
|
|
, kdelibs4support
|
|
, kio
|
|
, lcms2
|
|
, phonon
|
|
, qtsvg
|
|
, qtx11extras
|
|
}:
|
|
|
|
kdeApp {
|
|
name = "gwenview";
|
|
nativeBuildInputs = [
|
|
extra-cmake-modules
|
|
kdoctools
|
|
];
|
|
buildInputs = [
|
|
baloo
|
|
exiv2
|
|
kactivities
|
|
kdelibs4support
|
|
kio
|
|
lcms2
|
|
phonon
|
|
qtsvg
|
|
qtx11extras
|
|
];
|
|
meta = {
|
|
license = with lib.licenses; [ gpl2 fdl12 ];
|
|
maintainers = [ lib.maintainers.ttuegel ];
|
|
};
|
|
}
|