nixpkgs/pkgs/applications/window-managers/wayfire/wcm.nix

28 lines
828 B
Nix
Raw Permalink Normal View History

2021-02-07 19:18:57 +00:00
{ stdenv, lib, fetchurl, meson, ninja, pkg-config, wayland, wrapGAppsHook
, gtk3, libevdev, libxml2, wayfire, wayland-protocols, wf-config, wf-shell
2020-05-03 13:25:07 +00:00
}:
stdenv.mkDerivation rec {
pname = "wcm";
2021-02-07 19:18:57 +00:00
version = "0.7.0";
2020-05-03 13:25:07 +00:00
2021-02-07 19:18:57 +00:00
src = fetchurl {
url = "https://github.com/WayfireWM/wcm/releases/download/v${version}/wcm-${version}.tar.xz";
sha256 = "19za1fnlf5hz4n4mxxwqcr5yxp6mga9ah539ifnjnqrgvj19cjlj";
2020-05-03 13:25:07 +00:00
};
nativeBuildInputs = [ meson ninja pkg-config wayland wrapGAppsHook ];
buildInputs = [
gtk3 libevdev libxml2 wayfire wayland
2020-05-03 13:25:07 +00:00
wayland-protocols wf-config wf-shell
];
meta = with lib; {
homepage = "https://github.com/WayfireWM/wcm";
description = "Wayfire Config Manager";
license = licenses.mit;
maintainers = with maintainers; [ qyliss wucke13 ];
platforms = platforms.unix;
};
}