summary refs log tree commit diff
path: root/pkgs/tools/misc/file
diff options
context:
space:
mode:
authorR. RyanTM <ryantm+bot@ryantm.com>2018-04-17 02:45:07 -0700
committerR. RyanTM <ryantm+bot@ryantm.com>2018-04-17 02:45:07 -0700
commit02b022a9b2a672a17b2c72573aa155b371362308 (patch)
tree3c7859d0e08c32c799e14f86e6c614b486b2b77f /pkgs/tools/misc/file
parent333a24a628391137a7283f09498edd5822f12023 (diff)
downloadnixpkgs-02b022a9b2a672a17b2c72573aa155b371362308.tar
nixpkgs-02b022a9b2a672a17b2c72573aa155b371362308.tar.gz
nixpkgs-02b022a9b2a672a17b2c72573aa155b371362308.tar.bz2
nixpkgs-02b022a9b2a672a17b2c72573aa155b371362308.tar.lz
nixpkgs-02b022a9b2a672a17b2c72573aa155b371362308.tar.xz
nixpkgs-02b022a9b2a672a17b2c72573aa155b371362308.tar.zst
nixpkgs-02b022a9b2a672a17b2c72573aa155b371362308.zip
file: 5.32 -> 5.33
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/file/versions.

These checks were done:

- built on NixOS
- ran ‘/nix/store/n5afz3w8g0mj9pf5qcndb3kdz4jbljca-file-5.33/bin/file --help’ got 0 exit code
- ran ‘/nix/store/n5afz3w8g0mj9pf5qcndb3kdz4jbljca-file-5.33/bin/file help’ got 0 exit code
- found 5.33 with grep in /nix/store/n5afz3w8g0mj9pf5qcndb3kdz4jbljca-file-5.33
- directory tree listing: https://gist.github.com/b6f0a44bc22e88f13fe5dbc4f56d9296
Diffstat (limited to 'pkgs/tools/misc/file')
-rw-r--r--pkgs/tools/misc/file/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/misc/file/default.nix b/pkgs/tools/misc/file/default.nix
index 3765f913430..aeb43d7c115 100644
--- a/pkgs/tools/misc/file/default.nix
+++ b/pkgs/tools/misc/file/default.nix
@@ -2,14 +2,14 @@
 
 stdenv.mkDerivation rec {
   name = "file-${version}";
-  version = "5.32";
+  version = "5.33";
 
   src = fetchurl {
     urls = [
       "ftp://ftp.astron.com/pub/file/${name}.tar.gz"
       "https://distfiles.macports.org/file/${name}.tar.gz"
     ];
-    sha256 = "0l1bfa0icng9vdwya00ff48fhvjazi5610ylbhl35qi13d6xqfc6";
+    sha256 = "1iipnwjkag7q04zjkaqic41r9nlw0ml6mhqian6qkkbisb1whlhw";
   };
 
   nativeBuildInputs = stdenv.lib.optional (stdenv.hostPlatform != stdenv.buildPlatform) file;