xdo from 0.3 -> 0.5

This incorporates a number of bugfixes, as well as adding the
`below` and `above` actions

Also moved package from fetchurl to fetchFromGitHub
This commit is contained in:
Maxwell 2016-03-05 22:21:50 -05:00
parent 0bf8a1a86d
commit 65dd28c569

View File

@ -1,11 +1,11 @@
{ stdenv, fetchurl, libxcb, xcbutilwm }:
stdenv.mkDerivation rec {
name = "xdo-0.3";
name = "xdo-0.5";
src = fetchurl {
url = "https://github.com/baskerville/xdo/archive/0.3.tar.gz";
sha256 = "128flaydag9ixsai87p85r84arg2pn1j9h3zgdjwlmbcpb8d4ia8";
url = "https://github.com/baskerville/xdo/archive/0.5.tar.gz";
sha256 = "0sjnjs12i0gp1dg1m5jid4a3bg9am4qkf0qafyp6yn176yzcz1i6";
};
prePatch = ''sed -i "s@/usr/local@$out@" Makefile'';