tbe [the-butterfly-effect]: 0.9.2.1 -> 0.9.3.1

This commit is contained in:
Michael Raskin 2016-06-19 16:08:40 +02:00
parent cc0b3bbcc2
commit e2fd5aa3ce

View file

@ -1,15 +1,19 @@
{ stdenv, fetchurl, qt4, box2d, which, cmake }:
{ stdenv, fetchgit, qt5, box2d, which, cmake, gettext }:
stdenv.mkDerivation rec {
name = "tbe-${version}";
version = "0.9.2.1";
version = "0.9.3.1";
src = fetchurl {
url = "https://github.com/kaa-ching/tbe/archive/v${version}.tar.gz";
sha256 = "1cs4q9qiakfd2m1lvfsvfgf8yvhxzmc06glng5d80piwyn6ymzxg";
src = fetchgit {
url = "https://github.com/kaa-ching/tbe";
rev = "refs/tags/v${version}";
sha256 = "1ag2cp346f9bz9qy6za6q54id44d2ypvkyhvnjha14qzzapwaysj";
};
buildInputs = [ qt4 box2d which cmake ];
buildInputs = [
qt5.qtbase qt5.qtsvg qt5.qttranslations box2d which cmake
gettext
];
installPhase = ''
make DESTDIR=.. install