Merge pull request #29680 from mimadrid/update/gsource-0.47

gsource: 0.44 -> 0.47
This commit is contained in:
Pascal Wittmann 2017-09-23 19:02:45 +02:00 committed by GitHub
commit 53aa329054

View File

@ -1,18 +1,18 @@
{ stdenv, fetchurl, SDL, ftgl, pkgconfig, libpng, libjpeg, pcre
, SDL_image, freetype, glew, mesa, boost, glm
{ stdenv, fetchurl, SDL2, ftgl, pkgconfig, libpng, libjpeg, pcre
, SDL2_image, freetype, glew, mesa, boost, glm
}:
stdenv.mkDerivation rec {
version = "0.44";
version = "0.47";
name = "gource-${version}";
src = fetchurl {
url = "https://github.com/acaudwell/Gource/releases/download/${name}/${name}.tar.gz";
sha256 = "0z095zsf5pz8czh7nmlkdy29rm93w83sqyqspg2zsprh892cl116";
sha256 = "1llqwdnfa1pff8bxk27qsqff1fcg0a9kfdib0rn7p28vl21n1cgj";
};
buildInputs = [
glew SDL ftgl pkgconfig libpng libjpeg pcre SDL_image mesa
glew SDL2 ftgl pkgconfig libpng libjpeg pcre SDL2_image mesa
boost glm freetype
];