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

27 lines
722 B
Nix
Raw Normal View History

2020-09-07 15:54:55 +00:00
{ fetchhg, stdenv, coin3d, qtbase, cmake, pkgconfig }:
2019-08-13 21:52:01 +00:00
stdenv.mkDerivation {
2019-06-15 16:44:05 +00:00
pname = "soqt";
version = "1.6.0a";
2019-06-15 16:44:05 +00:00
src = fetchhg {
url = "https://bitbucket.org/Coin3D/soqt";
rev = "5f2afb4890e0059eb27e1671f980d10ebfb9e762";
sha256 = "0j9lsci4cx95v16l0jaky0vzh4lbdliwz7wc17442ihjaqiqmv8m";
fetchSubrepos = true;
};
2020-09-07 15:54:55 +00:00
buildInputs = [ coin3d qtbase ];
2019-06-15 16:44:05 +00:00
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;
};
}