cf5ed04f49
Provide a globally unique name (kdeApp) instead of using attribute paths as namespaces and locally overloading the mkDerivation name.
30 lines
377 B
Nix
30 lines
377 B
Nix
{ kdeApp
|
|
, lib
|
|
, automoc4
|
|
, cmake
|
|
, perl
|
|
, pkgconfig
|
|
, kdelibs
|
|
, libkipi
|
|
, libXfixes
|
|
}:
|
|
|
|
kdeApp {
|
|
name = "ksnapshot";
|
|
nativeBuildInputs = [
|
|
automoc4
|
|
cmake
|
|
perl
|
|
pkgconfig
|
|
];
|
|
buildInputs = [
|
|
kdelibs
|
|
libkipi
|
|
libXfixes
|
|
];
|
|
meta = {
|
|
license = with lib.licenses; [ gpl2 lgpl21 fdl12 ];
|
|
maintainers = [ lib.maintainers.ttuegel ];
|
|
};
|
|
}
|