summary refs log tree commit diff
path: root/pkgs/applications/science/misc/root
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2014-01-20 18:24:27 +0100
committerPeter Simons <simons@cryp.to>2014-01-20 18:24:27 +0100
commitbaeb19d0ce0f0600e6036c053831dd0a1886cbfd (patch)
tree104baf4bba3fa4ca412951bec54a8059290d3a0e /pkgs/applications/science/misc/root
parent6475f0d1fe9ac2b22711e97b2ba08b50801926e1 (diff)
downloadnixlib-baeb19d0ce0f0600e6036c053831dd0a1886cbfd.tar
nixlib-baeb19d0ce0f0600e6036c053831dd0a1886cbfd.tar.gz
nixlib-baeb19d0ce0f0600e6036c053831dd0a1886cbfd.tar.bz2
nixlib-baeb19d0ce0f0600e6036c053831dd0a1886cbfd.tar.lz
nixlib-baeb19d0ce0f0600e6036c053831dd0a1886cbfd.tar.xz
nixlib-baeb19d0ce0f0600e6036c053831dd0a1886cbfd.tar.zst
nixlib-baeb19d0ce0f0600e6036c053831dd0a1886cbfd.zip
root: clean up meta section and move build into 'science/misc' section
Diffstat (limited to 'pkgs/applications/science/misc/root')
-rw-r--r--pkgs/applications/science/misc/root/cmake.patch11
-rw-r--r--pkgs/applications/science/misc/root/default.nix25
2 files changed, 36 insertions, 0 deletions
diff --git a/pkgs/applications/science/misc/root/cmake.patch b/pkgs/applications/science/misc/root/cmake.patch
new file mode 100644
index 000000000000..b6efd7444fe9
--- /dev/null
+++ b/pkgs/applications/science/misc/root/cmake.patch
@@ -0,0 +1,11 @@
+--- cmake/modules/RootBuildOptions.cmake	1969-12-31 20:30:01.000000000 -0330
++++ cmake/modules/RootBuildOptions.cmake	2014-01-10 14:09:29.424937408 -0330
+@@ -149,7 +149,7 @@
+ 
+ #---General Build options----------------------------------------------------------------------
+ # use, i.e. don't skip the full RPATH for the build tree
+-set(CMAKE_SKIP_BUILD_RPATH  FALSE)
++set(CMAKE_SKIP_BUILD_RPATH  TRUE)
+ # when building, don't use the install RPATH already (but later on when installing)
+ set(CMAKE_BUILD_WITH_INSTALL_RPATH FALSE) 
+ # add the automatically determined parts of the RPATH
diff --git a/pkgs/applications/science/misc/root/default.nix b/pkgs/applications/science/misc/root/default.nix
new file mode 100644
index 000000000000..6f484dc82241
--- /dev/null
+++ b/pkgs/applications/science/misc/root/default.nix
@@ -0,0 +1,25 @@
+{ stdenv, fetchurl, cmake, mesa, libX11, gfortran, libXpm, libXft, libXext, zlib }:
+
+stdenv.mkDerivation rec {
+  name = "root-${version}";
+  version = "5.34.14";
+
+  src = fetchurl {
+    url = "ftp://root.cern.ch/root/root_v${version}.source.tar.gz";
+    sha256 = "d5347ba1b614eb083cf08050b784d66a93c125ed89938708da1adb33323dee2b";
+  };
+
+  buildInputs = [ cmake gfortran mesa libX11 libXpm libXft libXext zlib ];
+
+  # CMAKE_INSTALL_RPATH_USE_LINK_PATH is set to FALSE in
+  # <rootsrc>/cmake/modules/RootBuildOptions.cmake.
+  # This patch sets it to TRUE.
+  patches = [ ./cmake.patch ];
+  patchFlags = "-p0";
+
+  meta = {
+    homepage = "http://root.cern.ch/drupal/";
+    description = "A data analysis framework";
+    platforms = stdenv.lib.platforms.mesaPlatforms;
+  };
+}