3eb9b19d3b
Now that we keep only one version of Frameworks in Nixpkgs, it is not necessary to version the directory which stores the Nix expressions.
15 lines
187 B
Nix
15 lines
187 B
Nix
{ kdeFramework
|
|
, extra-cmake-modules
|
|
, wayland
|
|
}:
|
|
|
|
kdeFramework {
|
|
name = "kwayland";
|
|
nativeBuildInputs = [
|
|
extra-cmake-modules
|
|
];
|
|
propagatedBuildInputs = [
|
|
wayland
|
|
];
|
|
}
|