summary refs log tree commit diff
path: root/pkgs/tools/misc/file
diff options
context:
space:
mode:
authorBjørn Forsman <bjorn.forsman@gmail.com>2013-02-16 23:17:18 +0100
committerPeter Simons <simons@cryp.to>2013-02-18 11:46:47 +0100
commit52531cef2132c7aa1173ea9d770a2f81381d8562 (patch)
tree7e70fba3b1cf5afd00aecce49895216b129ce670 /pkgs/tools/misc/file
parent614e9b65a02a7527877b6be916ea85dd4a73ab6d (diff)
downloadnixpkgs-52531cef2132c7aa1173ea9d770a2f81381d8562.tar
nixpkgs-52531cef2132c7aa1173ea9d770a2f81381d8562.tar.gz
nixpkgs-52531cef2132c7aa1173ea9d770a2f81381d8562.tar.bz2
nixpkgs-52531cef2132c7aa1173ea9d770a2f81381d8562.tar.lz
nixpkgs-52531cef2132c7aa1173ea9d770a2f81381d8562.tar.xz
nixpkgs-52531cef2132c7aa1173ea9d770a2f81381d8562.tar.zst
nixpkgs-52531cef2132c7aa1173ea9d770a2f81381d8562.zip
file: bump from 5.11 to 5.12
Diffstat (limited to 'pkgs/tools/misc/file')
-rw-r--r--pkgs/tools/misc/file/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/tools/misc/file/default.nix b/pkgs/tools/misc/file/default.nix
index d7e88ec1a8c..8b141fea826 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";
   };
 }