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

24 lines
684 B
Nix
Raw Normal View History

2020-09-26 12:09:06 +01:00
{ fetchurl, stdenv, coin3d, qtbase, cmake, pkgconfig }:
2020-09-26 12:09:06 +01:00
stdenv.mkDerivation rec {
2019-06-15 17:44:05 +01:00
pname = "soqt";
2020-09-26 12:09:06 +01:00
version = "1.6.0";
2020-09-26 12:09:06 +01:00
src = fetchurl {
url = "https://github.com/coin3d/soqt/releases/download/SoQt-${version}/soqt-${version}-src.tar.gz";
sha256 = "07qfljy286vb7y1p93205zn9sp1lpn0rcrqm5010gj87kzsmllwz";
};
2020-09-07 16:54:55 +01:00
buildInputs = [ coin3d qtbase ];
2019-06-15 17:44:05 +01:00
nativeBuildInputs = [ cmake pkgconfig ];
2020-09-26 12:09:06 +01:00
meta = with stdenv.lib; {
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;
};
}