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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

62 lines
986 B
Nix
Raw Normal View History

2023-03-11 18:48:38 +00:00
{ stdenv
, lib
, fetchFromGitHub
, meson
, ninja
, pkg-config
, wayland
, wrapGAppsHook
, wayfire
, wf-shell
, wf-config
, wayland-scanner
, wayland-protocols
, gtk3
, libevdev
, libxml2
2020-05-03 13:25:07 +00:00
}:
stdenv.mkDerivation rec {
pname = "wcm";
2023-03-11 18:48:38 +00:00
version = "0.7.5";
2020-05-03 13:25:07 +00:00
2023-03-11 18:48:38 +00:00
src = fetchFromGitHub {
owner = "WayfireWM";
repo = pname;
rev = "v${version}";
fetchSubmodules = true;
sha256 = "sha256-LJR9JGl49o4O6LARofz3jOeAqseGcmzVhMnhk/aobUU=";
2020-05-03 13:25:07 +00:00
};
2023-03-11 18:48:38 +00:00
nativeBuildInputs = [
meson
ninja
pkg-config
wayland-scanner
wrapGAppsHook
];
2020-05-03 13:25:07 +00:00
buildInputs = [
2023-03-11 18:48:38 +00:00
wayfire
wf-config
wf-shell
wayland
wayland-protocols
gtk3
libevdev
libxml2
];
mesonFlags = [
"-Denable_wdisplays=false"
2020-05-03 13:25:07 +00:00
];
meta = with lib; {
homepage = "https://github.com/WayfireWM/wcm";
description = "Wayfire Config Manager";
license = licenses.mit;
2023-03-11 18:48:38 +00:00
maintainers = with maintainers; [ qyliss wucke13 rewine ];
2020-05-03 13:25:07 +00:00
platforms = platforms.unix;
};
}