2021-07-14 22:03:04 +00:00
|
|
|
{ stdenv, lib, fetchurl, dev86, sharutils }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "lilo";
|
|
|
|
version = "24.2";
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://www.joonet.de/lilo/ftp/sources/${pname}-${version}.tar.gz";
|
|
|
|
hash = "sha256-4VjxneRWDJNevgUHwht5v/F2GLkjDYB2/oxf/5/b1bE=";
|
|
|
|
};
|
|
|
|
nativeBuildInputs = [ dev86 sharutils ];
|
2022-06-16 17:23:12 +00:00
|
|
|
|
|
|
|
# Workaround build failure on -fno-common toolchains:
|
|
|
|
# ld: identify.o:(.bss+0x0): multiple definition of `identify';
|
|
|
|
# common.o:(.bss+0x160): first defined here
|
2023-03-04 12:14:45 +00:00
|
|
|
env.NIX_CFLAGS_COMPILE = "-fcommon";
|
2022-06-16 17:23:12 +00:00
|
|
|
|
2021-12-06 16:07:01 +00:00
|
|
|
makeFlags = [
|
|
|
|
"DESTDIR=${placeholder "out"}"
|
|
|
|
"SBIN_DIR=/bin"
|
|
|
|
"USRSBIN_DIR=/bin"
|
|
|
|
"MAN_DIR=/share/man"
|
|
|
|
];
|
2021-07-14 22:03:04 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://www.joonet.de/lilo/";
|
|
|
|
description = "Linux bootloader";
|
|
|
|
license = licenses.bsd3;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ kaction ];
|
|
|
|
};
|
|
|
|
}
|