about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/soqt/default.nix
blob: de11407e12b9258ec04a14619b963ba538ad7044 (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
{ fetchurl, stdenv, coin3d, qtbase, cmake, pkgconfig }:

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

  src = fetchurl {
    url = "https://github.com/coin3d/soqt/releases/download/SoQt-${version}/soqt-${version}-src.tar.gz";
    sha256 = "07qfljy286vb7y1p93205zn9sp1lpn0rcrqm5010gj87kzsmllwz";
  };

  buildInputs = [ coin3d qtbase ];

  nativeBuildInputs = [ cmake pkgconfig ];

  meta = with stdenv.lib; {
    homepage = "https://github.com/coin3d/soqt";
    license = licenses.bsd3;
    description = "Glue between Coin high-level 3D visualization library and Qt";
    maintainers = with maintainers; [ gebner viric ];
    platforms = platforms.linux;
  };
}