08b791a01b
A bit going on here. - Updating resholve from 0.5.1 -> 0.6.0 - adding a depdendency, `binlore`, to supply ~intel on executables that supports new functionality in resholve - adding a package, `yallback`, which provides rule-based callbacks for YARA rule matches (depdency of `binlore`). - automatically generating "lore" for each `input` to a solution in `resholvePackage`. - update README - restructuring some nix components to better support my local dev and CI workflows. - moved package tests into passthru/tests.nix (cuts `bats` out of resholve's immediate dependencies, makes it possible to add my existing Nix API test). - move my oil-dev patches out of resholve into a separate repo (no oil rebuild every time resholve's source changes). Also moving oil-dev into its own Nix file here, to ~track the default.nix in its own repo.
81 lines
2.2 KiB
Nix
81 lines
2.2 KiB
Nix
{ lib
|
|
, resholvePackage
|
|
, fetchFromGitHub
|
|
, asciidoc
|
|
, bash
|
|
, coreutils
|
|
, gawk
|
|
, gnum4
|
|
, testVersion
|
|
, util-linux
|
|
}:
|
|
|
|
resholvePackage rec {
|
|
pname = "arch-install-scripts";
|
|
version = "24";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "archlinux";
|
|
repo = "arch-install-scripts";
|
|
rev = "v${version}";
|
|
sha256 = "06rydiliis34lbz5fsayhbczs1xqi1a80jnhxafpjf6k3rfji6iq";
|
|
};
|
|
|
|
nativeBuildInputs = [ asciidoc gnum4 ];
|
|
|
|
preBuild = ''
|
|
substituteInPlace ./Makefile \
|
|
--replace "PREFIX = /usr/local" "PREFIX ?= /usr/local"
|
|
|
|
# https://github.com/archlinux/arch-install-scripts/pull/10
|
|
substituteInPlace ./common \
|
|
--replace "print '%s' \"\$1\"" "printf '%s' \"\$1\""
|
|
'';
|
|
|
|
installFlags = [ "PREFIX=$(out)" ];
|
|
|
|
doCheck = true;
|
|
|
|
solutions = {
|
|
# Give each solution a short name. This is what you'd use to
|
|
# override its settings, and it shows in (some) error messages.
|
|
profile = {
|
|
# the only *required* arguments are the 3 below
|
|
|
|
# Specify 1 or more $out-relative script paths. Unlike many
|
|
# builders, resholvePackage modifies the output files during
|
|
# fixup (to correctly resolve in-package sourcing).
|
|
scripts = [ "bin/arch-chroot" "bin/genfstab" "bin/pacstrap" ];
|
|
|
|
# "none" for no shebang, "${bash}/bin/bash" for bash, etc.
|
|
interpreter = "${bash}/bin/bash";
|
|
|
|
# packages resholve should resolve executables from
|
|
inputs = [ coreutils gawk util-linux ];
|
|
|
|
# TODO: no good way to resolve mount/umount in Nix builds for now
|
|
# see https://github.com/abathur/resholve/issues/29
|
|
fake = {
|
|
external = [ "mount" "umount" ];
|
|
};
|
|
|
|
# TODO: remove the execer lore override below after
|
|
# https://github.com/abathur/binlore/issues/1
|
|
execer = [
|
|
"cannot:${util-linux}/bin/unshare"
|
|
];
|
|
};
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Useful scripts for installing Arch Linux";
|
|
longDescription = ''
|
|
A small suite of scripts aimed at automating some menial tasks when installing Arch Linux.
|
|
'';
|
|
homepage = "https://github.com/archlinux/arch-install-scripts";
|
|
license = licenses.gpl2Only;
|
|
maintainers = with maintainers; [ yayayayaka ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|