Merge pull request #28907 from disassembler/neuron

neuron: 7.4 -> 7.5

authored by

Michael Raskin and committed by
GitHub
7411a924 14899974

+3 -3
+1 -1
pkgs/applications/science/biology/iv/default.nix
··· 6 6 { name = "iv-19"; 7 7 src = fetchurl 8 8 { url = "http://www.neuron.yale.edu/ftp/neuron/versions/v${neuron-version}/${name}.tar.gz"; 9 - sha256 = "1q22vjngvn3m61mjxynkik7pxvsgc9a0ym46qpa84hmz1v86mdrw"; 9 + sha256 = "07a3g8zzay4h0bls7fh89dd0phn7s34c2g15pij6dsnwpmjg06yx"; 10 10 }; 11 11 nativeBuildInputs = [ patchelf ]; 12 12 buildInputs = [ libXext ];
+2 -2
pkgs/applications/science/biology/neuron/default.nix
··· 14 14 15 15 stdenv.mkDerivation rec { 16 16 name = "neuron-${version}"; 17 - version = "7.4"; 17 + version = "7.5"; 18 18 19 19 nativeBuildInputs = [ which pkgconfig automake autoconf libtool ]; 20 20 buildInputs = [ ncurses readline python mpi iv ]; 21 21 22 22 src = fetchurl { 23 23 url = "http://www.neuron.yale.edu/ftp/neuron/versions/v${version}/nrn-${version}.tar.gz"; 24 - sha256 = "1rid8cmv5mca0vqkgwahm0prkwkbdvchgw2bdwvx4adkn8bbl0ql"; 24 + sha256 = "0f26v3qvzblcdjg7isq0m9j2q8q7x3vhmkfllv8lsr3gyj44lljf"; 25 25 }; 26 26 27 27 patches = (stdenv.lib.optional (stdenv.isDarwin) [ ./neuron-carbon-disable.patch ]);