Skip to content

Commit

Permalink
Merge pull request #253659 from bcdarwin/update-mrtrix
Browse files Browse the repository at this point in the history
mrtrix: unstable-2021-11-25 -> 3.0.4
  • Loading branch information
wegank authored Sep 6, 2023
2 parents 3e23333 + 5bbcb48 commit 055ac51
Showing 1 changed file with 25 additions and 9 deletions.
34 changes: 25 additions & 9 deletions pkgs/applications/science/biology/mrtrix/default.nix
Original file line number Diff line number Diff line change
@@ -1,17 +1,33 @@
{ stdenv, lib, fetchFromGitHub, python, makeWrapper
, eigen, fftw, libtiff, libpng, zlib, ants, bc
, qt5, libGL, libGLU, libX11, libXext
, withGui ? true, less }:
{ stdenv
, lib
, fetchFromGitHub
, python
, makeWrapper
, eigen
, fftw
, libtiff
, libpng
, zlib
, ants
, bc
, qt5
, libGL
, libGLU
, libX11
, libXext
, less
, withGui ? true
}:

stdenv.mkDerivation rec {
pname = "mrtrix";
version = "unstable-2021-11-25";
version = "3.0.4";

src = fetchFromGitHub {
owner = "MRtrix3";
repo = "mrtrix3";
rev = "994498557037c9e4f7ba67f255820ef84ea899d9";
sha256 = "sha256-8eFDS5z4ZxMzi9Khk90KAS4ndma/Syd6JDXM2Fpr0M8=";
owner = "MRtrix3";
repo = "mrtrix3";
rev = "refs/tags/${version}";
hash = "sha256-87zBAoBLWQPccGS37XyQ8H0GhL01k8GQFgcLL6IwbcM=";
fetchSubmodules = true;
};

Expand Down

0 comments on commit 055ac51

Please sign in to comment.