mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 17:03:01 +00:00
68 lines
1.8 KiB
Nix
68 lines
1.8 KiB
Nix
# Builds limine with all available features.
|
|
|
|
{
|
|
# Helpers
|
|
stdenv
|
|
, fetchurl
|
|
, lib
|
|
, # Dependencies
|
|
llvmPackages
|
|
, mtools
|
|
, nasm
|
|
}:
|
|
|
|
let
|
|
version = "7.8.0";
|
|
in
|
|
# The output of the derivation is a tool to create bootable images using Limine
|
|
# as bootloader for various platforms and corresponding binary and helper files.
|
|
stdenv.mkDerivation {
|
|
inherit version;
|
|
pname = "limine";
|
|
# We don't use the Git source but the release tarball, as the source has a
|
|
# `./bootstrap` script performing network access to download resources.
|
|
# Packaging that in Nix is very cumbersome.
|
|
src = fetchurl {
|
|
url = "https://github.com/limine-bootloader/limine/releases/download/v${version}/limine-${version}.tar.gz";
|
|
sha256 = "sha256-Fue2KPyJ76Q1f+chvhwmJlmQ4QwXksyCeztd2d2cTH0=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
llvmPackages.bintools
|
|
# gcc is used for the host tool, while clang is used for the bootloader.
|
|
llvmPackages.clang
|
|
llvmPackages.lld
|
|
mtools
|
|
nasm
|
|
];
|
|
|
|
configureFlags = [
|
|
"--enable-all"
|
|
];
|
|
|
|
installFlags = [ "destdir=$out" "manprefix=/share" ];
|
|
|
|
outputs = [ "out" "doc" "dev" "man" ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://limine-bootloader.org/";
|
|
description = "Limine Bootloader";
|
|
# Caution. Some submodules have different licenses.
|
|
license = [
|
|
licenses.bsd2 # limine, flanterm
|
|
licenses.bsd0 # freestanding-toolchain, freestanding-headers
|
|
licenses.asl20 # cc-runtime
|
|
licenses.mit # limine-efi, stb
|
|
licenses.zlib # tinf
|
|
];
|
|
# The platforms on that the Liminine binary and helper tools can run, not
|
|
# necessarily the platforms for that bootable images can be created.
|
|
platforms = platforms.unix;
|
|
badPlatforms = platforms.darwin;
|
|
maintainers = [
|
|
maintainers._48cf
|
|
maintainers.phip1611
|
|
];
|
|
};
|
|
}
|