5ba93bd4c3
Provides a globally unique name (kdeFramework) instead of using attribute paths as namespaces and locally overloading the mkDerivation name.
12 lines
197 B
Nix
12 lines
197 B
Nix
{ kdeFramework, lib
|
|
, extra-cmake-modules
|
|
}:
|
|
|
|
kdeFramework {
|
|
name = "kitemmodels";
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
meta = {
|
|
maintainers = [ lib.maintainers.ttuegel ];
|
|
};
|
|
}
|