Getting mars to build. Somehow the fetchsvn in sfml_svn did not work anymore.

svn path=/nixpkgs/trunk/; revision=27037
This commit is contained in:
Lluís Batlle i Rossell
2011-04-28 20:50:12 +00:00
parent 300456b2c8
commit c259379dc9
3 changed files with 9 additions and 9 deletions

View File

@@ -1,12 +1,12 @@
{ stdenv, fetchsvn, cmake, mesa, libX11, freetype, libjpeg, openal, libsndfile
{ stdenv, fetchgit, cmake, mesa, libX11, freetype, libjpeg, openal, libsndfile
, glew, libXrandr, libXrender
}:
stdenv.mkDerivation rec {
name = "sfml-svn-${version}";
version = "1808";
src = fetchsvn {
url = "https://sfml.svn.sourceforge.net/svnroot/sfml/branches/sfml2";
rev = version;
name = "sfml-git-20110428";
src = fetchgit {
url = "http://github.com/LaurentGomila/SFML.git";
rev = "6eac4256f3be353f51ee";
sha256 = "1b4f1901e0e482dbc0ad60e2821af766fb8ce093de51d678918ac2a0fb6e8587";
};
buildInputs = [ cmake mesa libX11 freetype libjpeg openal libsndfile glew
libXrandr libXrender