mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
culvert: init at 0.4.0.unstable-2024-10-16 (#349150)
This commit is contained in:
commit
87a8321edf
46
pkgs/by-name/cu/culvert/package.nix
Normal file
46
pkgs/by-name/cu/culvert/package.nix
Normal file
@ -0,0 +1,46 @@
|
||||
{
|
||||
stdenv,
|
||||
lib,
|
||||
fetchFromGitHub,
|
||||
fetchpatch,
|
||||
meson,
|
||||
ninja,
|
||||
pkg-config,
|
||||
dtc,
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
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 = "A Test and Debug Tool for BMC AHB Interfaces ";
|
||||
mainProgram = "culvert";
|
||||
license = licenses.asl20;
|
||||
maintainers = [ maintainers.baloo ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user