about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/soqt/default.nix
blob: 9769596621b1e32fa0837025f4127a26d2f361fe (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ fetchurl, stdenv, coin3d, qt4, pkgconfig }:

stdenv.mkDerivation rec {
  name = "soqt-${version}";
  version = "1.5.0";

  src = fetchurl {
    url = "https://bitbucket.org/Coin3D/coin/downloads/SoQt-${version}.tar.gz";
    sha256 = "14dbh8ynzjcgwgxjc6530c5plji7vn62kbdf447w0dp53564p8zn";
  };

  buildInputs = [ coin3d qt4 ];

  nativeBuildInputs = [ pkgconfig ];

  meta = {
    homepage = https://bitbucket.org/Coin3D/coin/wiki/Home;
    license = stdenv.lib.licenses.gpl2Plus;
    description = "Glue between Coin high-level 3D visualization library and Qt";

    maintainers = [ stdenv.lib.maintainers.viric ];
    platforms = stdenv.lib.platforms.linux;
  };
}