diff --git a/pkgs/tools/misc/file/default.nix b/pkgs/tools/misc/file/default.nix index d7e31e9cf32e..cf4919d3c8f9 100644 --- a/pkgs/tools/misc/file/default.nix +++ b/pkgs/tools/misc/file/default.nix @@ -1,9 +1,14 @@ {stdenv, fetchurl}: stdenv.mkDerivation { - name = "file-4.17"; + name = "file-4.23"; src = fetchurl { - url = ftp://ftp.astron.com/pub/file/file-4.17.tar.gz; - md5 = "50919c65e0181423d66bb25d7fe7b0fd"; + url = ftp://ftp.astron.com/pub/file/file-4.23.tar.gz; + sha256 = "0iyiyzcs88k6r881l11zrg86ys3rnwjyh1bgx7hnfyjv8zk9db9g"; + }; + + meta = { + description = "A program that shows the type of files"; + homepage = ftp://ftp.astron.com/pub/file; }; }