31 lines
908 B
Nix
31 lines
908 B
Nix
{ fetchurl, stdenv, mesa }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "coin3d-${version}";
|
|
version = "3.1.3";
|
|
|
|
src = fetchurl {
|
|
url = "https://bitbucket.org/Coin3D/coin/downloads/Coin-${version}.tar.gz";
|
|
sha256 = "05ylhrcglm81dajbk132l1w892634z2i97x10fm64y1ih72phd2q";
|
|
};
|
|
|
|
patches = [
|
|
(fetchurl {
|
|
url = http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/media-libs/coin/files/coin-3.1.3-gcc-4.7.patch;
|
|
name = "gcc-4.7.patch";
|
|
sha256 = "076dyc52swk8qc7ylps53fg6iqmd52x8s7m18i80x49dd109yw20";
|
|
})
|
|
./gcc-4.8.patch # taken from FC-17 source rpm
|
|
];
|
|
|
|
buildInputs = [ mesa ];
|
|
|
|
meta = {
|
|
homepage = http://www.coin3d.org/;
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
|
description = "High-level, retained-mode toolkit for effective 3D graphics development";
|
|
maintainers = [ stdenv.lib.maintainers.viric ];
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
}
|