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
41 lines
902 B
Nix
41 lines
902 B
Nix
{
|
|
stdenv,
|
|
lib,
|
|
fetchurl,
|
|
dev86,
|
|
sharutils,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "lilo";
|
|
version = "24.2";
|
|
src = fetchurl {
|
|
url = "https://www.joonet.de/lilo/ftp/sources/lilo-${version}.tar.gz";
|
|
hash = "sha256-4VjxneRWDJNevgUHwht5v/F2GLkjDYB2/oxf/5/b1bE=";
|
|
};
|
|
nativeBuildInputs = [
|
|
dev86
|
|
sharutils
|
|
];
|
|
|
|
# Workaround build failure on -fno-common toolchains:
|
|
# ld: identify.o:(.bss+0x0): multiple definition of `identify';
|
|
# common.o:(.bss+0x160): first defined here
|
|
env.NIX_CFLAGS_COMPILE = "-fcommon";
|
|
|
|
makeFlags = [
|
|
"DESTDIR=${placeholder "out"}"
|
|
"SBIN_DIR=/bin"
|
|
"USRSBIN_DIR=/bin"
|
|
"MAN_DIR=/share/man"
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://www.joonet.de/lilo/";
|
|
description = "Linux bootloader";
|
|
license = licenses.bsd3;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ kaction ];
|
|
};
|
|
}
|