forked from mirrors/nixpkgs
Adding coin3d and soqt
svn path=/nixpkgs/trunk/; revision=26133
This commit is contained in:
parent
e1cf8f90e6
commit
6381040f0a
22
pkgs/development/libraries/coin3d/default.nix
Normal file
22
pkgs/development/libraries/coin3d/default.nix
Normal file
|
@ -0,0 +1,22 @@
|
|||
{ fetchurl, stdenv, mesa }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "coin3d-${version}";
|
||||
version = "3.1.3";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://ftp.coin3d.org/coin/src/all/Coin-${version}.tar.gz";
|
||||
sha256 = "05ylhrcglm81dajbk132l1w892634z2i97x10fm64y1ih72phd2q";
|
||||
};
|
||||
|
||||
buildInputs = [ mesa ];
|
||||
|
||||
meta = {
|
||||
homepage = http://www.coin3d.org/;
|
||||
license = "GPLv2+";
|
||||
description = "High-level, retained-mode toolkit for effective 3D graphics development.";
|
||||
|
||||
maintainers = [ stdenv.lib.maintainers.viric ];
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
};
|
||||
}
|
22
pkgs/development/libraries/soqt/default.nix
Normal file
22
pkgs/development/libraries/soqt/default.nix
Normal file
|
@ -0,0 +1,22 @@
|
|||
{ fetchurl, stdenv, coin3d, qt4 }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "soqt-${version}";
|
||||
version = "1.5.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://ftp.coin3d.org/coin/src/all/SoQt-${version}.tar.gz";
|
||||
sha256 = "14dbh8ynzjcgwgxjc6530c5plji7vn62kbdf447w0dp53564p8zn";
|
||||
};
|
||||
|
||||
buildInputs = [ coin3d qt4 ];
|
||||
|
||||
meta = {
|
||||
homepage = http://www.coin3d.org/;
|
||||
license = "GPLv2+";
|
||||
description = "Glue between Coin high-level 3D visualization library and Qt";
|
||||
|
||||
maintainers = [ stdenv.lib.maintainers.viric ];
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue