mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-01 19:33:03 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
32 lines
881 B
Nix
32 lines
881 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 ];
|
|
};
|
|
}
|