fork
Configure Feed
Select the types of activity you want to include in your feed.
lol
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{ fetchurl, stdenv, coin3d, qt4, pkgconfig }:
2
3stdenv.mkDerivation rec {
4 name = "soqt-${version}";
5 version = "1.5.0";
6
7 src = fetchurl {
8 url = "https://bitbucket.org/Coin3D/coin/downloads/SoQt-${version}.tar.gz";
9 sha256 = "14dbh8ynzjcgwgxjc6530c5plji7vn62kbdf447w0dp53564p8zn";
10 };
11
12 buildInputs = [ coin3d qt4 ];
13
14 nativeBuildInputs = [ pkgconfig ];
15
16 meta = {
17 homepage = http://www.coin3d.org/;
18 license = stdenv.lib.licenses.gpl2Plus;
19 description = "Glue between Coin high-level 3D visualization library and Qt";
20
21 maintainers = [ stdenv.lib.maintainers.viric ];
22 platforms = stdenv.lib.platforms.linux;
23 };
24}