libsForQt5.soqt: 1.6.0a -> 1.6.0
This commit is contained in:
parent
11dd6f4584
commit
0b536960ac
@ -1,26 +1,23 @@
|
|||||||
{ fetchhg, stdenv, coin3d, qtbase, cmake, pkgconfig }:
|
{ fetchurl, stdenv, coin3d, qtbase, cmake, pkgconfig }:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation rec {
|
||||||
pname = "soqt";
|
pname = "soqt";
|
||||||
version = "1.6.0a";
|
version = "1.6.0";
|
||||||
|
|
||||||
src = fetchhg {
|
src = fetchurl {
|
||||||
url = "https://bitbucket.org/Coin3D/soqt";
|
url = "https://github.com/coin3d/soqt/releases/download/SoQt-${version}/soqt-${version}-src.tar.gz";
|
||||||
rev = "5f2afb4890e0059eb27e1671f980d10ebfb9e762";
|
sha256 = "07qfljy286vb7y1p93205zn9sp1lpn0rcrqm5010gj87kzsmllwz";
|
||||||
sha256 = "0j9lsci4cx95v16l0jaky0vzh4lbdliwz7wc17442ihjaqiqmv8m";
|
|
||||||
fetchSubrepos = true;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ coin3d qtbase ];
|
buildInputs = [ coin3d qtbase ];
|
||||||
|
|
||||||
nativeBuildInputs = [ cmake pkgconfig ];
|
nativeBuildInputs = [ cmake pkgconfig ];
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
homepage = "https://bitbucket.org/Coin3D/coin/wiki/Home";
|
homepage = "https://github.com/coin3d/soqt";
|
||||||
license = stdenv.lib.licenses.gpl2Plus;
|
license = licenses.bsd3;
|
||||||
description = "Glue between Coin high-level 3D visualization library and Qt";
|
description = "Glue between Coin high-level 3D visualization library and Qt";
|
||||||
|
maintainers = with maintainers; [ gebner viric ];
|
||||||
maintainers = [ stdenv.lib.maintainers.viric ];
|
platforms = platforms.linux;
|
||||||
platforms = stdenv.lib.platforms.linux;
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user