Fixing ogre-paged build.

I update to a tree maintained by rigsofrods people.
This commit is contained in:
Lluís Batlle i Rossell 2016-04-18 12:29:09 +02:00
parent 2d3245042e
commit ecedf80a52

View File

@ -1,11 +1,12 @@
{ stdenv, fetchurl, cmake, pkgconfig, ois, ogre, libX11, boost }: { stdenv, fetchurl, cmake, pkgconfig, ois, ogre, libX11, boost }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "ogre-paged-1.1.3"; name = "ogre-paged-${version}";
version = "1.2.0";
src = fetchurl { src = fetchurl {
url = "http://ogre-paged.googlecode.com/files/${name}.tar.gz"; url = "https://github.com/RigsOfRods/ogre-pagedgeometry/archive/v${version}.tar.gz";
sha256 = "1qqlkg17plk87dm3fsm34x8lkd5rxkhiz77ppcgc71a7z050vhjq"; sha256 = "17j7rw9wbkynxbhm2lay3qgjnnagb2vd5jn9iijnn2lf8qzbgy82";
}; };
buildInputs = [ ois ogre libX11 boost ]; buildInputs = [ ois ogre libX11 boost ];
@ -19,7 +20,5 @@ stdenv.mkDerivation rec {
description = "Paged Geometry for Ogre3D"; description = "Paged Geometry for Ogre3D";
homepage = http://code.google.com/p/ogre-paged/; homepage = http://code.google.com/p/ogre-paged/;
license = stdenv.lib.licenses.mit; license = stdenv.lib.licenses.mit;
# Build failures
broken = true;
}; };
} }