sway: 1.5 -> 1.5.1

This is basically a no-op, apart from the version bump.
This commit is contained in:
Michael Weiss 2020-11-10 21:02:25 +01:00
parent e50eb89d52
commit 4c0972e8d7
No known key found for this signature in database
GPG Key ID: 5BE487C4D4771D83

View File

@ -7,13 +7,13 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "sway-unwrapped"; pname = "sway-unwrapped";
version = "1.5"; version = "1.5.1";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "swaywm"; owner = "swaywm";
repo = "sway"; repo = "sway";
rev = version; rev = version;
sha256 = "0r3b7h778l9i20z3him9i2qsaynpn9y78hzfgv3cqi8fyry2c4f9"; sha256 = "1xsa3h8zhf29p0mi90baxpr76jkd9pd1gr97ky8cnjbcs4isj9j0";
}; };
patches = [ patches = [
@ -21,12 +21,6 @@ stdenv.mkDerivation rec {
./load-configuration-from-etc.patch ./load-configuration-from-etc.patch
]; ];
postPatch = ''
substituteInPlace meson.build \
--replace "v1.5" "1.5" \
--replace "wlroots_version = ['>=0.11.0', '<0.12.0']" "wlroots_version = ['>=0.11.0', '<0.13.0']"
'';
nativeBuildInputs = [ nativeBuildInputs = [
meson ninja pkg-config wayland scdoc meson ninja pkg-config wayland scdoc
]; ];