3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/window-managers/wayfire/default.nix

31 lines
903 B
Nix
Raw Normal View History

2021-06-16 13:36:25 +01:00
{ lib, stdenv, fetchurl, meson, ninja, pkg-config
2020-05-02 18:38:59 +01:00
, cairo, libdrm, libexecinfo, libinput, libjpeg, libxkbcommon, wayland
2021-04-08 22:03:22 +01:00
, wayland-protocols, wf-config, wlroots, mesa
2020-05-02 18:38:59 +01:00
}:
stdenv.mkDerivation rec {
pname = "wayfire";
2021-04-29 03:53:30 +01:00
version = "0.7.1";
2020-05-02 18:38:59 +01:00
src = fetchurl {
2021-02-07 19:16:13 +00:00
url = "https://github.com/WayfireWM/wayfire/releases/download/v${version}/wayfire-${version}.tar.xz";
2021-04-29 03:53:30 +01:00
sha256 = "0wgvwbmdhn7gkdr2jl9jndgvl6w4x7ys8gmpj55gqh9b57wqhyaq";
2020-05-02 18:38:59 +01:00
};
nativeBuildInputs = [ meson ninja pkg-config wayland ];
buildInputs = [
cairo libdrm libexecinfo libinput libjpeg libxkbcommon wayland
2021-04-08 22:03:22 +01:00
wayland-protocols wf-config wlroots mesa
2020-05-02 18:38:59 +01:00
];
mesonFlags = [ "--sysconfdir" "/etc" ];
meta = with lib; {
homepage = "https://wayfire.org/";
2021-04-29 03:53:30 +01:00
description = "3D Wayland compositor";
2020-05-02 18:38:59 +01:00
license = licenses.mit;
maintainers = with maintainers; [ qyliss wucke13 ];
platforms = platforms.unix;
};
}