From dbdbdaf1c68a0595c16f63a5baa048bfd87d90e7 Mon Sep 17 00:00:00 2001 From: Yegor Timoshenko Date: Mon, 6 Aug 2018 14:47:29 +0300 Subject: b2sum: use fetchzip, clean up --- pkgs/tools/security/b2sum/default.nix | 20 +++++++++++--------- 1 file 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 ]; -- cgit 1.4.1