nixpkgs/pkgs/by-name/cr/criterion/package.nix
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

118 lines
2.2 KiB
Nix

{
lib,
stdenv,
fetchFromGitHub,
boxfort,
meson,
libcsptr,
pkg-config,
gettext,
cmake,
ninja,
protobuf,
libffi,
libgit2,
dyncall,
nanomsg,
nanopbMalloc,
python3Packages,
testers,
criterion,
callPackage
}:
let
# follow revisions defined in .wrap files
debugbreak = fetchFromGitHub {
owner = "MrAnno";
repo = "debugbreak";
rev = "83bf7e933311b88613cbaadeced9c2e2c811054a";
hash = "sha256-OPrPGBUZN73Nl5NMEf/nME843yTolt913yjut3rAos0=";
};
klib = fetchFromGitHub {
owner = "attractivechaos";
repo = "klib";
rev = "cdb7e9236dc47abf8da7ebd702cc6f7f21f0c502";
hash = "sha256-+GaI5nXz4jYI0rO17xDhNtFpLlGL2WzeSVLMfB6Cl6E=";
};
in
stdenv.mkDerivation rec {
pname = "criterion";
version = "2.4.2";
src = fetchFromGitHub {
owner = "Snaipe";
repo = "Criterion";
rev = "v${version}";
fetchSubmodules = true;
hash = "sha256-5GH7AYjrnBnqiSmp28BoaM1Xmy8sPs1atfqJkGy3Yf0=";
};
nativeBuildInputs = [
meson
ninja
cmake
pkg-config
protobuf
];
buildInputs = [
(lib.getDev boxfort)
dyncall
gettext
libcsptr
nanomsg
nanopbMalloc
libgit2
libffi
];
nativeCheckInputs = with python3Packages; [ cram ];
doCheck = true;
prePatch = ''
cp -r ${debugbreak} subprojects/debugbreak
cp -r ${klib} subprojects/klib
for dep in "debugbreak" "klib"; do
local meson="$dep/meson.build"
chmod +w subprojects/$dep
cp subprojects/packagefiles/$meson subprojects/$meson
done
'';
postPatch = ''
patchShebangs ci/isdir.py src/protocol/gen-pb.py
'';
outputs = [
"out"
"dev"
];
passthru.tests.version =
let
tester = callPackage ./tests/001-version.nix {};
in
testers.testVersion {
package = criterion;
command = "${lib.getExe tester} --version";
version = "v${version}";
};
meta = {
description = "Cross-platform C and C++ unit testing framework for the 21th century";
homepage = "https://github.com/Snaipe/Criterion";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [
thesola10
Yumasi
sigmanificient
];
platforms = lib.platforms.unix;
};
}