mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-18 19:26:02 +00:00
5ba93bd4c3
Provides a globally unique name (kdeFramework) instead of using attribute paths as namespaces and locally overloading the mkDerivation name.
16 lines
271 B
Nix
16 lines
271 B
Nix
{ kdeFramework, lib
|
|
, extra-cmake-modules
|
|
, kdoctools
|
|
}:
|
|
|
|
kdeFramework {
|
|
name = "kjs";
|
|
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
|
|
postInstall = ''
|
|
wrapKDEProgram "$out/bin/kjs5"
|
|
'';
|
|
meta = {
|
|
maintainers = [ lib.maintainers.ttuegel ];
|
|
};
|
|
}
|