libb2: 0.98 -> 0.98.1 (#58122)
This commit is contained in:
parent
70e084073f
commit
ebf46a2acb
|
@ -1,12 +1,14 @@
|
||||||
{ stdenv, fetchurl, autoconf, automake, libtool }:
|
{ stdenv, fetchFromGitHub, autoconf, automake, libtool, pkg-config }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "libb2-${version}";
|
name = "libb2-${version}";
|
||||||
version = "0.98";
|
version = "0.98.1";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchFromGitHub {
|
||||||
url = "https://blake2.net/${name}.tar.gz";
|
owner = "BLAKE2";
|
||||||
sha256 = "1852gh8wwnsghdb9zhxdhw0173plpqzk684npxbl4bzk1hhzisal";
|
repo = "libb2";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "0qj8aaqvfcavj1vj5asm4pqm03ap7q8x4c2fy83cqggvky0frgya";
|
||||||
};
|
};
|
||||||
|
|
||||||
preConfigure = ''
|
preConfigure = ''
|
||||||
|
@ -16,14 +18,15 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
configureFlags = stdenv.lib.optional stdenv.hostPlatform.isx86 "--enable-fat=yes";
|
configureFlags = stdenv.lib.optional stdenv.hostPlatform.isx86 "--enable-fat=yes";
|
||||||
|
|
||||||
nativeBuildInputs = [ autoconf automake libtool ];
|
nativeBuildInputs = [ autoconf automake libtool pkg-config ];
|
||||||
|
|
||||||
doCheck = true;
|
doCheck = true;
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "The BLAKE2 family of cryptographic hash functions";
|
description = "The BLAKE2 family of cryptographic hash functions";
|
||||||
|
homepage = https://blake2.net/;
|
||||||
platforms = platforms.all;
|
platforms = platforms.all;
|
||||||
maintainers = with maintainers; [ dfoxfranke ];
|
maintainers = with maintainers; [ dfoxfranke dotlambda ];
|
||||||
license = licenses.cc0;
|
license = licenses.cc0;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue