sway-beta: 1.0-rc3 -> 1.0-rc4

This commit is contained in:
Michael Weiss 2019-02-26 19:00:22 +01:00
parent afe0725834
commit 0c89c444a2
No known key found for this signature in database
GPG Key ID: 5BE487C4D4771D83

View File

@ -10,13 +10,13 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "${pname}-${version}"; name = "${pname}-${version}";
pname = "sway"; pname = "sway";
version = "1.0-rc3"; version = "1.0-rc4";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "swaywm"; owner = "swaywm";
repo = "sway"; repo = "sway";
rev = version; rev = version;
sha256 = "1ixwc1bg725x68qr84s8a5i4rlzc4svc52jgdw1yl5bgr6l1k5zc"; sha256 = "1f0mvf48dvsivdd850r1gd2h90cbn62qflwiff6x2addn868bvxa";
}; };
postPatch = '' postPatch = ''
@ -36,8 +36,7 @@ stdenv.mkDerivation rec {
enableParallelBuilding = true; enableParallelBuilding = true;
mesonFlags = [ mesonFlags = [
"-Dxwayland=enabled" "-Dgdk-pixbuf=enabled" "-Dxwayland=enabled" "-Dgdk-pixbuf=enabled" "-Dtray=enabled"
"-Dtray=enabled"
] ++ stdenv.lib.optional buildDocs "-Dman-pages=enabled"; ] ++ stdenv.lib.optional buildDocs "-Dman-pages=enabled";
meta = with stdenv.lib; { meta = with stdenv.lib; {
@ -45,6 +44,6 @@ stdenv.mkDerivation rec {
homepage = https://swaywm.org; homepage = https://swaywm.org;
license = licenses.mit; license = licenses.mit;
platforms = platforms.linux; platforms = platforms.linux;
maintainers = with maintainers; [ primeos synthetica ]; # Trying to keep it up-to-date. maintainers = with maintainers; [ primeos synthetica ];
}; };
} }