aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/libraries/soxt
diff options
context:
space:
mode:
authorGabriel Ebner <gebner@gebner.org>2019-06-17 17:51:32 +0200
committerGabriel Ebner <gebner@gebner.org>2019-06-17 18:40:52 +0200
commitd8392958f7204b5afe1d6c8e75c7bb826d9c931a (patch)
treeba03dd0ac56196c67c3fbff2e837e77e97a37640 /pkgs/development/libraries/soxt
parentad409cead6f9e51943daf5f02f1b78c7699ce728 (diff)
soxt: 1.3.0 -> unstable-2019-06-14
Diffstat (limited to 'pkgs/development/libraries/soxt')
-rw-r--r--pkgs/development/libraries/soxt/default.nix17
1 files changed, 10 insertions, 7 deletions
diff --git a/pkgs/development/libraries/soxt/default.nix b/pkgs/development/libraries/soxt/default.nix
index c219d5bfb362..50ba9c944ab5 100644
--- a/pkgs/development/libraries/soxt/default.nix
+++ b/pkgs/development/libraries/soxt/default.nix
@@ -1,15 +1,18 @@
-{ fetchurl, stdenv, coin3d, motif, xlibsWrapper, libGLU_combined }:
+{ fetchhg, stdenv, cmake, coin3d, motif, xlibsWrapper, libXmu, libGLU_combined }:
stdenv.mkDerivation rec {
- name = "soxt-${version}";
- version = "1.3.0";
+ pname = "soxt";
+ version = "unstable-2019-06-14";
- src = fetchurl {
- url = "https://bitbucket.org/Coin3D/coin/downloads/SoXt-${version}.tar.gz";
- sha256= "f5443aadafe8e2222b9b5a23d1f228bb0f3e7d98949b8ea8676171b7ea5bf013";
+ src = fetchhg {
+ url = "https://bitbucket.org/Coin3D/soxt";
+ rev = "85e135bb266fbb17e47fc336b876a576a239c15c";
+ sha256 = "0vk5cgn53yqf7csqdnlnyyhi4mbgx4wlsq70613p5fgxlvxzhcym";
+ fetchSubrepos = true;
};
- buildInputs = [ coin3d motif xlibsWrapper libGLU_combined ];
+ nativeBuildInputs = [ cmake ];
+ buildInputs = [ coin3d motif xlibsWrapper libGLU_combined libXmu ];
meta = with stdenv.lib; {
homepage = https://bitbucket.org/Coin3D/coin/wiki/Home;