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
50 lines
916 B
Nix
50 lines
916 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
autoreconfHook,
|
|
pkg-config,
|
|
systemd,
|
|
libxslt,
|
|
docbook_xsl,
|
|
docbook_xml_dtd_45,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "systemd-bootchart";
|
|
version = "235";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "systemd";
|
|
repo = "systemd-bootchart";
|
|
tag = "v${finalAttrs.version}";
|
|
hash = "sha256-1h6/Q6ShfJbu/DXENIe5GAQiZp4jlOAg6SAR36cmg2I=";
|
|
};
|
|
|
|
strictDeps = true;
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
pkg-config
|
|
libxslt
|
|
docbook_xsl
|
|
docbook_xml_dtd_45
|
|
];
|
|
|
|
buildInputs = [
|
|
systemd
|
|
];
|
|
|
|
configureFlags = [
|
|
"--with-rootprefix=$(out)"
|
|
];
|
|
|
|
meta = {
|
|
description = "Boot performance graphing tool from systemd";
|
|
homepage = "https://github.com/systemd/systemd-bootchart";
|
|
license = lib.licenses.lgpl21Plus;
|
|
maintainers = [ lib.maintainers.brianmcgillion ];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
})
|