1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

blas: fix by updating, fixes #10420, close #10545

The new URL also looks more stable.
This commit is contained in:
Vladimír Čunát 2015-10-22 20:11:30 +02:00
parent 657b1ccc47
commit 2b71fdbbc3

View file

@ -1,10 +1,10 @@
{ stdenv, fetchurl, gfortran }:
stdenv.mkDerivation {
name = "blas-20110419";
stdenv.mkDerivation rec {
name = "blas-3.5.0";
src = fetchurl {
url = "http://www.netlib.org/blas/blas.tgz";
sha256 = "1d931d91byv2svydpj2ipjh1f2sm1h9ns8ik2w5fwaa8qinxz1za";
url = "http://www.netlib.org/blas/${name}.tgz";
sha256 = "096a3apnh899abjymjjg8m34hncagkzp9qxw08cms98g71fpfzgg";
};
buildInputs = [gfortran];