summary refs log tree commit diff
path: root/pkgs/tools/misc/file/default.nix
diff options
context:
space:
mode:
authorVladyslav Mykhailichenko <dywedir@pm.me>2018-10-19 17:41:00 +0300
committerFrederik Rietdijk <freddyrietdijk@fridh.nl>2018-10-20 09:52:31 +0200
commiteee82aee375bf964e41dc7b66e35977a85e287a7 (patch)
tree536c449bfdc0959188513f0eae4e657f98c5cf6b /pkgs/tools/misc/file/default.nix
parent4eadb330450725ad10eb85181afc75e3d6a66d8a (diff)
downloadnixpkgs-eee82aee375bf964e41dc7b66e35977a85e287a7.tar
nixpkgs-eee82aee375bf964e41dc7b66e35977a85e287a7.tar.gz
nixpkgs-eee82aee375bf964e41dc7b66e35977a85e287a7.tar.bz2
nixpkgs-eee82aee375bf964e41dc7b66e35977a85e287a7.tar.lz
nixpkgs-eee82aee375bf964e41dc7b66e35977a85e287a7.tar.xz
nixpkgs-eee82aee375bf964e41dc7b66e35977a85e287a7.tar.zst
nixpkgs-eee82aee375bf964e41dc7b66e35977a85e287a7.zip
file: 5.34 -> 5.35
Diffstat (limited to 'pkgs/tools/misc/file/default.nix')
-rw-r--r--pkgs/tools/misc/file/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/tools/misc/file/default.nix b/pkgs/tools/misc/file/default.nix
index 1e8c902a050..cefddbd65ef 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.34";
+  version = "5.35";
 
   src = fetchurl {
     urls = [
       "ftp://ftp.astron.com/pub/file/${name}.tar.gz"
       "https://distfiles.macports.org/file/${name}.tar.gz"
     ];
-    sha256 = "02mj4g34l13facacsc0ff8rchbh93ccqw7hns45yqgx8pzdm0npi";
+    sha256 = "0ijm1fabm68ykr1zbx0bxnka5jr3n42sj8y5mbkrnxs0fj0mxi1h";
   };
 
   nativeBuildInputs = stdenv.lib.optional (stdenv.hostPlatform != stdenv.buildPlatform) file;
@@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
               else null;
 
   meta = with stdenv.lib; {
-    homepage = http://darwinsys.com/file;
+    homepage = https://darwinsys.com/file;
     description = "A program that shows the type of files";
     license = licenses.bsd2;
     platforms = platforms.all;