mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
dcm2niix: 1.0.20170130 -> 1.0.20190410
This commit is contained in:
parent
c740f71c35
commit
2458209c3e
1 changed files with 4 additions and 3 deletions
|
@ -2,21 +2,22 @@
|
|||
, fetchFromGitHub
|
||||
, cmake
|
||||
, libyamlcpp
|
||||
, git
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "1.0.20170130";
|
||||
version = "1.0.20190410";
|
||||
name = "dcm2niix-${version}";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "rordenlab";
|
||||
repo = "dcm2niix";
|
||||
rev = "v${version}";
|
||||
sha256 = "1f2nzd8flp1rfn725bi64z7aw3ccxyyygzarxijw6pvgl476i532";
|
||||
sha256 = "1prwpvbi76xlpkhc4kadjhyyx0s71cs30hi6anknhfm6hdyd26ms";
|
||||
};
|
||||
|
||||
enableParallelBuilding = true;
|
||||
nativeBuildInputs = [ cmake ];
|
||||
nativeBuildInputs = [ cmake git ];
|
||||
buildInputs = [ libyamlcpp ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
|
|
Loading…
Reference in a new issue