1 { fetchFromGitHub, lib, stdenv, coin3d, qtbase, cmake, pkg-config }:
3 stdenv.mkDerivation rec {
5 version = "2020-12-05-unstable";
7 src = fetchFromGitHub {
10 # rev = "SoQt-${version}";
11 rev = "fb8f655632bb9c9c60e0ff9fa69a5ba22d3ff99d";
12 sha256 = "sha256-YoBq8P3Tag2Sepqxf/qIcJDBhH/gladBmDUj78aacZs=";
13 fetchSubmodules = true;
16 buildInputs = [ coin3d qtbase ];
18 nativeBuildInputs = [ cmake pkg-config ];
20 dontWrapQtApps = true;
23 homepage = "https://github.com/coin3d/soqt";
24 license = licenses.bsd3;
25 description = "Glue between Coin high-level 3D visualization library and Qt";
26 maintainers = with maintainers; [ gebner viric ];
27 platforms = platforms.linux;