Files
nixpkgs/pkgs/by-name/be/bencode/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

59 lines
1.2 KiB
Nix

{
lib,
stdenv,
fetchFromGitHub,
catch2,
cmake,
expected-lite,
fmt,
gsl-lite,
ninja,
}:
stdenv.mkDerivation rec {
pname = "bencode";
version = "1.0.1";
src = fetchFromGitHub {
owner = "fbdtemme";
repo = "bencode";
rev = version;
hash = "sha256-zpxvADZfYTUdlNLMZJSCanPL40EGl9BBCxR7oDhvOTw=";
};
nativeBuildInputs = [
cmake
ninja
];
buildInputs = [
catch2
expected-lite
fmt
gsl-lite
];
postPatch = ''
# Disable a test that requires an internet connection.
substituteInPlace tests/CMakeLists.txt \
--replace "add_subdirectory(cmake_fetch_content)" ""
'';
doCheck = true;
postInstall = ''
rm -rf $out/lib64
'';
meta = with lib; {
description = "Header-only C++20 bencode serialization/deserialization library";
homepage = "https://github.com/fbdtemme/bencode";
changelog = "https://github.com/fbdtemme/bencode/blob/${src.rev}/CHANGELOG.md";
license = licenses.mit;
maintainers = [ ];
platforms = platforms.unix;
# Broken because the default stdenv on these targets doesn't support C++20.
broken = with stdenv; isDarwin || (isLinux && isAarch64);
};
}