coin3d: 4.0.0 -> 2020-12-07-unstable

This commit is contained in:
Gabriel Ebner 2020-12-08 16:29:06 +01:00
parent afdd7b51e7
commit 827bb3b9c0

View File

@ -1,14 +1,15 @@
{ fetchFromGitHub, stdenv, boost, cmake, libGL, libGLU }: { fetchFromGitHub, stdenv, boost, cmake, libX11, libGL, libGLU }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "coin"; pname = "coin";
version = "4.0.0"; version = "2020-12-07-unstable";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "coin3d"; owner = "coin3d";
repo = "coin"; repo = "coin";
rev = "Coin-${version}"; # rev = "Coin-${version}";
sha256 = "1ayg0hl8wanhadahm5xbghghxw1qjwqbrs3dl3ngnff027hsyf8p"; rev = "d5539998aff272b349590fe74d068659682ecd0d";
sha256 = "11jaz8p9nn8jpd6dsgwgkldwr7z829gyf64g014qyyh8l6p7jzzd";
}; };
postPatch = '' postPatch = ''
@ -16,7 +17,7 @@ stdenv.mkDerivation rec {
''; '';
nativeBuildInputs = [ cmake ]; nativeBuildInputs = [ cmake ];
buildInputs = [ boost libGL libGLU ]; buildInputs = [ boost libX11 libGL libGLU ];
meta = with stdenv.lib; { meta = with stdenv.lib; {
homepage = "https://github.com/coin3d/coin"; homepage = "https://github.com/coin3d/coin";