Merge pull request #18121 from lancelotsix/update_gsl_2.2

gsl: 2.1 -> 2.2
This commit is contained in:
Robin Gloster 2016-08-30 15:16:41 +02:00 committed by GitHub
commit 94201919d2
2 changed files with 4 additions and 4 deletions

View File

@ -1,5 +1,5 @@
{stdenv, fetchurl, libX11, xproto, indent, readline, gsl, freeglut, mesa, SDL
, blas, binutils, intltool, gettext, zlib}:
, blas, binutils, intltool, gettext, zlib, libSM}:
stdenv.mkDerivation rec {
baseName = "lush";
@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
};
buildInputs = [
libX11 xproto indent readline gsl freeglut mesa SDL blas binutils
libX11 libSM xproto indent readline gsl freeglut mesa SDL blas binutils
intltool gettext zlib
];

View File

@ -1,11 +1,11 @@
{ fetchurl, fetchpatch, stdenv }:
stdenv.mkDerivation rec {
name = "gsl-2.1";
name = "gsl-2.2";
src = fetchurl {
url = "mirror://gnu/gsl/${name}.tar.gz";
sha256 = "0rhcia9jhr3p1f1wybwyllwqfs9bggz99i3mi5lpyqcpff1hdbar";
sha256 = "1pyq2c0j91z955746myn29c89jwkd435s2cbj8ks2hpag6d0mr2d";
};
patches = [