summary refs log tree commit diff
path: root/pkgs/development/libraries/soqt/default.nix
blob: 79084ceda1c32dc9a4f303a08fbb1a4dc7b62a1b (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
25
26
{ fetchhg, stdenv, coin3d, qt5, cmake, pkgconfig }:

stdenv.mkDerivation {
  pname = "soqt";
  version = "1.6.0a";

  src = fetchhg {
    url = "https://bitbucket.org/Coin3D/soqt";
    rev = "5f2afb4890e0059eb27e1671f980d10ebfb9e762";
    sha256 = "0j9lsci4cx95v16l0jaky0vzh4lbdliwz7wc17442ihjaqiqmv8m";
    fetchSubrepos = true;
  };

  buildInputs = [ coin3d qt5.qtbase ];

  nativeBuildInputs = [ cmake 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;
  };
}