Skip to content
This repository was archived by the owner on Apr 12, 2021. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: be7c1a3e6b77
Choose a base ref
...
head repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 30a82bba734b
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Jun 19, 2019

  1. dcm2niix: 1.0.20170130 -> 1.0.20190410 (#63479)

    (cherry picked from commit 2458209)
    lheckemann committed Jun 19, 2019
    Copy the full SHA
    30a82bb View commit details
Showing with 4 additions and 3 deletions.
  1. +4 −3 pkgs/applications/science/biology/dcm2niix/default.nix
7 changes: 4 additions & 3 deletions pkgs/applications/science/biology/dcm2niix/default.nix
Original file line number Diff line number Diff line change
@@ -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; {