added ftgl, gource

svn path=/nixpkgs/trunk/; revision=24379
This commit is contained in:
Rob Vermaas
2010-10-20 10:53:45 +00:00
parent 5a7fa1d061
commit 202774b93e
3 changed files with 30 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
{stdenv, fetchurl, SDL, ftgl, pkgconfig, libpng, libjpeg, pcre, SDL_image, glew, mesa}:
stdenv.mkDerivation {
name = "gource-0.28";
src = fetchurl {
url = http://gource.googlecode.com/files/gource-0.28.tar.gz;
sha256 = "09538vcf9n21qx4cmcjrki6ilayvm4x6s0zdf00mrd1h0bklhxn3";
};
buildInputs = [glew SDL ftgl pkgconfig libpng libjpeg pcre SDL_image mesa];
}