about summary refs log tree commit diff
path: root/pkgs/tools/misc/lilo/default.nix
blob: f72cdc422be0c33a26447738094ea841c6f4e6e6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{ 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
  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 ];
  };
}