Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ pkgs }:
2[
3 pkgs.coreutils
4 pkgs.findutils
5 pkgs.diffutils
6 pkgs.gnused
7 pkgs.gnugrep
8 pkgs.gawk
9 pkgs.gnutar
10 pkgs.gzip
11 pkgs.bzip2.bin
12 pkgs.gnumake
13 pkgs.bashNonInteractive
14 pkgs.patch
15 pkgs.xz.bin
16
17 # The `file` command is added here because an enormous number of
18 # packages have a vendored dependency upon `file` in their
19 # `./configure` script, due to libtool<=2.4.6, or due to
20 # libtool>=2.4.7 in which the package author decided to set FILECMD
21 # when running libtoolize. In fact, file-5.4.6 *depends on itself*
22 # and tries to invoke `file` from its own ./configure script.
23 pkgs.file
24]