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.
15 lines
262 B
Nix
15 lines
262 B
Nix
{ kdeFramework, lib
|
|
, extra-cmake-modules
|
|
}:
|
|
|
|
kdeFramework {
|
|
name = "solid";
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
postInstall = ''
|
|
wrapKDEProgram "$out/bin/solid-hardware5"
|
|
'';
|
|
meta = {
|
|
maintainers = [ lib.maintainers.ttuegel ];
|
|
};
|
|
}
|