termite: 11 -> 12

This commit is contained in:
Charles Strahan 2016-10-03 02:19:57 -04:00
parent b10ed9772a
commit 342780520f
No known key found for this signature in database
GPG Key ID: BB47AB4B8489B5A5
2 changed files with 4 additions and 4 deletions

View File

@ -3,14 +3,14 @@
}:
let
version = "11";
version = "12";
termite = stdenv.mkDerivation {
name = "termite-${version}";
src = fetchgit {
url = "https://github.com/thestinger/termite";
rev = "refs/tags/v${version}";
sha256 = "1cw4yw7n9m2si8b7zcfyz9pyihncabxm5g39v1mxslfajxgwzmd8";
sha256 = "0s6dyg3vcqk5qcx90bs24wdnd3p56rdjdcanx4pcxvp6ksjl61jz";
};
postPatch = "sed '1i#include <math.h>' -i termite.cc";

View File

@ -39,12 +39,12 @@ let baseAttrs = rec {
in stdenv.mkDerivation ( baseAttrs
// stdenv.lib.optionalAttrs selectTextPatch rec {
name = "vte-ng-${version}";
version = "0.42.4.a";
version = "0.44.1b-ng";
src = fetchFromGitHub {
owner = "thestinger";
repo = "vte-ng";
rev = version;
sha256 = "1w91lz30j5lrskp9ds5j3nn27m5mpdpn7nlcvf5y1w63mpmjg8k1";
sha256 = "0p61znma9742fd3c6b44rq7j6mhpr6gx2b9rldm3jhb62ss4vsyy";
};
# slightly hacky; I couldn't make it work with autoreconfHook
configureScript = "./autogen.sh";