mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 16:33:15 +00:00
f9fdf2d402
with structuredAttrs lists will be bash arrays which cannot be exported which will be a issue with some patches and some wrappers like cc-wrapper this makes it clearer that NIX_CFLAGS_COMPILE must be a string as lists in env cause a eval failure
32 lines
885 B
Nix
32 lines
885 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/${pname}-${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 ];
|
|
};
|
|
}
|