summary refs log tree commit diff
path: root/pkgs/development/libraries/soqt/default.nix
blob: f5a7724c5065914ed6c14069a6efdcc9a6668fe4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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;
  };
}