diff --git a/pkgs/tools/misc/file/default.nix b/pkgs/tools/misc/file/default.nix index d7e88ec1a8cd..8b141fea8262 100644 --- a/pkgs/tools/misc/file/default.nix +++ b/pkgs/tools/misc/file/default.nix @@ -1,17 +1,17 @@ -{stdenv, fetchurl, zlib}: +{ stdenv, fetchurl, zlib }: stdenv.mkDerivation rec { - name = "file-5.11"; + name = "file-5.12"; buildInputs = [ zlib ]; src = fetchurl { url = "ftp://ftp.astron.com/pub/file/${name}.tar.gz"; - sha256 = "c70ae29a28c0585f541d5916fc3248c3e91baa481f63d7ccec53d1534cbcc9b7"; + sha256 = "08ix4xrvan0k80n0l5lqfmc4azjv5lyhvhwdxny4r09j5smhv78r"; }; meta = { - description = "A program that shows the type of files"; homepage = "http://darwinsys.com/file"; + description = "A program that shows the type of files"; }; }