nixpkgs/pkgs/development/libraries/soqt/default.nix

30 lines
786 B
Nix
Raw Normal View History

{ fetchFromGitHub, lib, stdenv, coin3d, qtbase, cmake, pkg-config }:
2020-09-26 12:09:06 +01:00
stdenv.mkDerivation rec {
2019-06-15 17:44:05 +01:00
pname = "soqt";
2020-12-08 15:29:28 +00:00
version = "2020-12-05-unstable";
2020-12-08 15:29:28 +00:00
src = fetchFromGitHub {
owner = "coin3d";
repo = "soqt";
# rev = "SoQt-${version}";
rev = "fb8f655632bb9c9c60e0ff9fa69a5ba22d3ff99d";
sha256 = "sha256-YoBq8P3Tag2Sepqxf/qIcJDBhH/gladBmDUj78aacZs=";
fetchSubmodules = true;
};
2020-09-07 16:54:55 +01:00
buildInputs = [ coin3d qtbase ];
nativeBuildInputs = [ cmake pkg-config ];
dontWrapQtApps = true;
meta = with lib; {
2020-09-26 12:09:06 +01:00
homepage = "https://github.com/coin3d/soqt";
license = licenses.bsd3;
description = "Glue between Coin high-level 3D visualization library and Qt";
2020-09-26 12:09:06 +01:00
maintainers = with maintainers; [ gebner viric ];
platforms = platforms.linux;
};
}