sway: 0.9 -> 0.11 (#22835)

This commit is contained in:
Jaanus Torp 2017-02-15 15:28:01 +00:00 committed by Franz Pletz
parent c16bfb8ac1
commit 8978a9ee48

View File

@ -1,10 +1,10 @@
{ stdenv, fetchFromGitHub, pango, libinput { stdenv, fetchFromGitHub, pango, libinput
, makeWrapper, cmake, pkgconfig, asciidoc, libxslt, docbook_xsl, cairo , makeWrapper, cmake, pkgconfig, asciidoc, libxslt, docbook_xsl, cairo
, wayland, wlc, libxkbcommon, pixman, fontconfig, pcre, json_c, dbus_libs , wayland, wlc, libxkbcommon, pixman, fontconfig, pcre, json_c, dbus_libs, libcap
}: }:
let let
version = "0.9"; version = "0.11";
in in
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "sway-${version}"; name = "sway-${version}";
@ -13,12 +13,12 @@ in
owner = "Sircmpwn"; owner = "Sircmpwn";
repo = "sway"; repo = "sway";
rev = "${version}"; rev = "${version}";
sha256 = "0qqqg23rknxnjcgvkfrx3pijqc3dvi74qmmavq07vy2qfs1xlwg0"; sha256 = "01k01f72kh90fwgqh2hgg6dv9931x4v18bzz11b47mn7p9z68ddv";
}; };
nativeBuildInputs = [ makeWrapper cmake pkgconfig asciidoc libxslt docbook_xsl ]; nativeBuildInputs = [ makeWrapper cmake pkgconfig asciidoc libxslt docbook_xsl ];
buildInputs = [ wayland wlc libxkbcommon pixman fontconfig pcre json_c dbus_libs pango cairo libinput ]; buildInputs = [ wayland wlc libxkbcommon pixman fontconfig pcre json_c dbus_libs pango cairo libinput libcap ];
patchPhase = '' patchPhase = ''
sed -i s@/etc/sway@$out/etc/sway@g CMakeLists.txt; sed -i s@/etc/sway@$out/etc/sway@g CMakeLists.txt;