mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 15:56:50 +01:00
irrlicht: 1.8-svn-5104 -> 1.8.4
This commit is contained in:
parent
1c44981d19
commit
4bf9622749
1 changed files with 6 additions and 8 deletions
|
@ -1,15 +1,13 @@
|
|||
{ fetchsvn, stdenv, mesa, unzip, libXrandr, libX11, libXxf86vm }:
|
||||
{ stdenv, fetchzip, mesa, unzip, libXrandr, libX11, libXxf86vm }:
|
||||
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "irrlicht-${version}-svn-${revision}";
|
||||
version = "1.8";
|
||||
revision = "5104"; # newest revision as of 05-16-15
|
||||
name = "irrlicht-${version}";
|
||||
version = "1.8.4";
|
||||
|
||||
src = fetchsvn {
|
||||
url = "https://svn.code.sf.net/p/irrlicht/code/branches/releases/${version}"; # get 1.8 release (same regardless of rev)
|
||||
rev = "${revision}";
|
||||
sha256 = "18xvlrjf113mphf29iy24hmrkh7xff6j9cz0chrxjqbr9xk9h1yq";
|
||||
src = fetchzip {
|
||||
url = "mirror://sourceforge/irrlicht/${name}.zip";
|
||||
sha256 = "02sq067fn4xpf0lcyb4vqxmm43qg2nxx770bgrl799yymqbvih5f";
|
||||
};
|
||||
|
||||
preConfigure = ''
|
||||
|
|
Loading…
Reference in a new issue