nixpkgs/pkgs/desktops/plasma-5.4/kwayland.nix

15 lines
177 B
Nix
Raw Normal View History

2015-09-27 16:03:00 +01:00
{ mkDerivation
, extra-cmake-modules
, wayland
}:
mkDerivation {
name = "kwayland";
nativeBuildInputs = [
extra-cmake-modules
];
buildInputs = [
wayland
];
}