Files
nixpkgs/pkgs/by-name/cu/culvert/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

46 lines
847 B
Nix

{
stdenv,
lib,
fetchFromGitHub,
meson,
ninja,
pkg-config,
dtc,
}:
stdenv.mkDerivation {
pname = "culvert";
version = "0.4.0.unstable-2024-10-17";
src = fetchFromGitHub {
owner = "amboar";
repo = "culvert";
rev = "770a6ed4badec1c6e3079cd9b354d0996d55b326";
hash = "sha256-Lj72uYItTxTVYcSEbr/XezeyFvrcqqMTu74tOE+DwJE=";
};
nativeBuildInputs = [
meson
ninja
pkg-config
dtc # The dtc binary to compile device trees
];
buildInputs = [
dtc # provides libfdt
];
mesonFlags = [
"-Db_lto=false"
];
meta = with lib; {
homepage = "https://github.com/amboar/culvert";
description = "Test and Debug Tool for BMC AHB Interfaces ";
mainProgram = "culvert";
license = licenses.asl20;
maintainers = [ maintainers.baloo ];
platforms = platforms.linux;
};
}