Files
Ihar HrachyshkaandWolfgang Walther 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

48 lines
951 B
Nix

{
lib,
stdenv,
fetchFromGitHub,
autoreconfHook,
libtool,
pkg-config,
testers,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "libb2";
version = "0.98.1";
src = fetchFromGitHub {
owner = "BLAKE2";
repo = "libb2";
tag = "v${finalAttrs.version}";
sha256 = "0qj8aaqvfcavj1vj5asm4pqm03ap7q8x4c2fy83cqggvky0frgya";
};
nativeBuildInputs = [
autoreconfHook
libtool
pkg-config
];
configureFlags = lib.optional stdenv.hostPlatform.isx86 "--enable-fat=yes";
enableParallelBuilding = true;
doCheck = true;
passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage;
meta = {
description = "BLAKE2 family of cryptographic hash functions";
homepage = "https://blake2.net/";
pkgConfigModules = [ "libb2" ];
platforms = lib.platforms.all;
maintainers = with lib.maintainers; [
dfoxfranke
dotlambda
];
license = lib.licenses.cc0;
};
})