zlib: minor update 1.2.7 -> 1.2.8
This commit is contained in:
parent
431b774cc0
commit
3e3f70713f
1 changed files with 3 additions and 3 deletions
|
@ -1,16 +1,16 @@
|
|||
{ stdenv, fetchurl, static ? false }:
|
||||
|
||||
let version = "1.2.7"; in
|
||||
let version = "1.2.8"; in
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "zlib-${version}";
|
||||
|
||||
|
||||
src = fetchurl {
|
||||
urls =
|
||||
[ "http://www.zlib.net/${name}.tar.gz" # old versions vanish from here
|
||||
"mirror://sourceforge/libpng/zlib/${version}/${name}.tar.gz"
|
||||
];
|
||||
sha256 = "1i96gsdvxqb6skp9a58bacf1wxamwi9m9pg4yn7cpf7g7239r77s";
|
||||
sha256 = "039agw5rqvqny92cpkrfn243x2gd4xn13hs3xi6isk55d2vqqr9n";
|
||||
};
|
||||
|
||||
configureFlags = if static then "" else "--shared";
|
||||
|
|
Loading…
Reference in a new issue