summary refs log tree commit diff
path: root/pkgs/tools/security
diff options
context:
space:
mode:
authorYegor Timoshenko <yegortimoshenko@riseup.net>2018-08-06 14:47:29 +0300
committerGitHub <noreply@github.com>2018-08-06 14:47:29 +0300
commitdbdbdaf1c68a0595c16f63a5baa048bfd87d90e7 (patch)
treed5ca844b4b27c44bc3d0ef8bc040a1862ed4690e /pkgs/tools/security
parent121c264c7b14b954c0c53bb04e946e8046f83bcf (diff)
downloadnixlib-dbdbdaf1c68a0595c16f63a5baa048bfd87d90e7.tar
nixlib-dbdbdaf1c68a0595c16f63a5baa048bfd87d90e7.tar.gz
nixlib-dbdbdaf1c68a0595c16f63a5baa048bfd87d90e7.tar.bz2
nixlib-dbdbdaf1c68a0595c16f63a5baa048bfd87d90e7.tar.lz
nixlib-dbdbdaf1c68a0595c16f63a5baa048bfd87d90e7.tar.xz
nixlib-dbdbdaf1c68a0595c16f63a5baa048bfd87d90e7.tar.zst
nixlib-dbdbdaf1c68a0595c16f63a5baa048bfd87d90e7.zip
b2sum: use fetchzip, clean up
Diffstat (limited to 'pkgs/tools/security')
-rw-r--r--pkgs/tools/security/b2sum/default.nix20
1 files changed, 11 insertions, 9 deletions
diff --git a/pkgs/tools/security/b2sum/default.nix b/pkgs/tools/security/b2sum/default.nix
index 97495b8cde5f..1679b7fddd07 100644
--- a/pkgs/tools/security/b2sum/default.nix
+++ b/pkgs/tools/security/b2sum/default.nix
@@ -1,22 +1,24 @@
-{ stdenv, fetchurl, openmp ? null }:
+{ stdenv, fetchzip, openmp ? null }:
+
+with stdenv.lib;
 
 stdenv.mkDerivation rec {
-  version = "unstable-2018-06-11";
-  rev = "320c325437539ae91091ce62efec1913cd8093c2";
   name = "b2sum-${version}";
+  version = "unstable-2018-06-11";
 
-  src = fetchurl {
-    url = "https://github.com/BLAKE2/BLAKE2/archive/${rev}.tar.gz";
-    sha256 = "19f07dwli9ymlc87ikn84j4h5fv57afwj9ni7s0jkaym5l0q6nqw";
+  src = fetchzip {
+    url = "https://github.com/BLAKE2/BLAKE2/archive/320c325437539ae91091ce62efec1913cd8093c2.tar.gz";
+    sha256 = "0agmc515avdpr64bsgv87wby2idm0d3wbndxzkhdfjgzhgv0rb8k";
   };
-  postUnpack = "sourceRoot=$sourceRoot/b2sum";
+
+  sourceRoot = "source/b2sum";
 
   buildInputs = [ openmp ];
 
-  makeFlags = stdenv.lib.optional (isNull openmp) "NO_OPENMP=1";
+  buildFlags = [ (optional (isNull openmp) "NO_OPENMP=1") ];
   installFlags = [ "PREFIX=$(out)" ];
 
-  meta = with stdenv.lib; {
+  meta = {
     description = "The b2sum utility is similar to the md5sum or shasum utilities but for BLAKE2";
     homepage = "https://blake2.net";
     license = with licenses; [ asl20 cc0 openssl ];