3
0
Fork 0
forked from mirrors/nixpkgs

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 {
pname = "sway-unwrapped";
version = "1.5";
version = "1.5.1";
src = fetchFromGitHub {
owner = "swaywm";
repo = "sway";
rev = version;
sha256 = "0r3b7h778l9i20z3him9i2qsaynpn9y78hzfgv3cqi8fyry2c4f9";
sha256 = "1xsa3h8zhf29p0mi90baxpr76jkd9pd1gr97ky8cnjbcs4isj9j0";
};
patches = [
@ -21,12 +21,6 @@ stdenv.mkDerivation rec {
./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 = [
meson ninja pkg-config wayland scdoc
];