wcm: 0.7.0 -> 0.7.5
This commit is contained in:
parent
2c98c9d34a
commit
a852c3656a
1 changed files with 44 additions and 10 deletions
|
@ -1,27 +1,61 @@
|
||||||
{ stdenv, lib, fetchurl, meson, ninja, pkg-config, wayland, wrapGAppsHook
|
{ stdenv
|
||||||
, gtk3, libevdev, libxml2, wayfire, wayland-protocols, wf-config, wf-shell
|
, lib
|
||||||
|
, fetchFromGitHub
|
||||||
|
, meson
|
||||||
|
, ninja
|
||||||
|
, pkg-config
|
||||||
|
, wayland
|
||||||
|
, wrapGAppsHook
|
||||||
|
, wayfire
|
||||||
|
, wf-shell
|
||||||
|
, wf-config
|
||||||
|
, wayland-scanner
|
||||||
|
, wayland-protocols
|
||||||
|
, gtk3
|
||||||
|
, libevdev
|
||||||
|
, libxml2
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "wcm";
|
pname = "wcm";
|
||||||
version = "0.7.0";
|
version = "0.7.5";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchFromGitHub {
|
||||||
url = "https://github.com/WayfireWM/wcm/releases/download/v${version}/wcm-${version}.tar.xz";
|
owner = "WayfireWM";
|
||||||
sha256 = "19za1fnlf5hz4n4mxxwqcr5yxp6mga9ah539ifnjnqrgvj19cjlj";
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
fetchSubmodules = true;
|
||||||
|
sha256 = "sha256-LJR9JGl49o4O6LARofz3jOeAqseGcmzVhMnhk/aobUU=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ meson ninja pkg-config wayland wrapGAppsHook ];
|
nativeBuildInputs = [
|
||||||
|
meson
|
||||||
|
ninja
|
||||||
|
pkg-config
|
||||||
|
wayland-scanner
|
||||||
|
wrapGAppsHook
|
||||||
|
];
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
gtk3 libevdev libxml2 wayfire wayland
|
wayfire
|
||||||
wayland-protocols wf-config wf-shell
|
wf-config
|
||||||
|
wf-shell
|
||||||
|
wayland
|
||||||
|
wayland-protocols
|
||||||
|
gtk3
|
||||||
|
libevdev
|
||||||
|
libxml2
|
||||||
|
];
|
||||||
|
|
||||||
|
mesonFlags = [
|
||||||
|
"-Denable_wdisplays=false"
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "https://github.com/WayfireWM/wcm";
|
homepage = "https://github.com/WayfireWM/wcm";
|
||||||
description = "Wayfire Config Manager";
|
description = "Wayfire Config Manager";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = with maintainers; [ qyliss wucke13 ];
|
maintainers = with maintainers; [ qyliss wucke13 rewine ];
|
||||||
platforms = platforms.unix;
|
platforms = platforms.unix;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue