Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
25 lines
621 B
Nix
25 lines
621 B
Nix
{ pkgs }:
|
|
[
|
|
pkgs.coreutils
|
|
pkgs.findutils
|
|
pkgs.diffutils
|
|
pkgs.gnused
|
|
pkgs.gnugrep
|
|
pkgs.gawk
|
|
pkgs.gnutar
|
|
pkgs.gzip
|
|
pkgs.bzip2.bin
|
|
pkgs.gnumake
|
|
pkgs.bashNonInteractive
|
|
pkgs.patch
|
|
pkgs.xz.bin
|
|
|
|
# The `file` command is added here because an enormous number of
|
|
# packages have a vendored dependency upon `file` in their
|
|
# `./configure` script, due to libtool<=2.4.6, or due to
|
|
# libtool>=2.4.7 in which the package author decided to set FILECMD
|
|
# when running libtoolize. In fact, file-5.4.6 *depends on itself*
|
|
# and tries to invoke `file` from its own ./configure script.
|
|
pkgs.file
|
|
]
|