1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/desktops/plasma-5.4/kwayland.nix
2015-09-27 15:08:11 -05:00

15 lines
177 B
Nix

{ mkDerivation
, extra-cmake-modules
, wayland
}:
mkDerivation {
name = "kwayland";
nativeBuildInputs = [
extra-cmake-modules
];
buildInputs = [
wayland
];
}