2022-08-21 13:32:41 +00:00
|
|
|
|
{ lib
|
|
|
|
|
, stdenv
|
|
|
|
|
, fetchurl
|
2024-09-19 14:19:46 +00:00
|
|
|
|
, autoreconfHook
|
2022-08-21 13:32:41 +00:00
|
|
|
|
, guileSupport ? false, guile
|
|
|
|
|
# avoid guile depend on bootstrap to prevent dependency cycles
|
|
|
|
|
, inBootstrap ? false
|
|
|
|
|
, pkg-config
|
|
|
|
|
, gnumake
|
|
|
|
|
}:
|
|
|
|
|
|
|
|
|
|
let
|
|
|
|
|
guileEnabled = guileSupport && !inBootstrap;
|
|
|
|
|
in
|
2020-07-18 16:06:22 +00:00
|
|
|
|
|
2021-07-18 21:22:44 +00:00
|
|
|
|
stdenv.mkDerivation rec {
|
2020-07-18 16:06:22 +00:00
|
|
|
|
pname = "gnumake";
|
2023-03-15 16:39:30 +00:00
|
|
|
|
version = "4.4.1";
|
2020-07-18 16:06:22 +00:00
|
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
|
url = "mirror://gnu/make/make-${version}.tar.gz";
|
2023-03-15 16:39:30 +00:00
|
|
|
|
sha256 = "sha256-3Rb7HWe/q3mnL16DkHNcSePo5wtJRaFasfgd23hlj7M=";
|
2020-07-18 16:06:22 +00:00
|
|
|
|
};
|
|
|
|
|
|
2024-09-19 14:19:46 +00:00
|
|
|
|
# To update patches:
|
|
|
|
|
# $ version=4.4.1
|
|
|
|
|
# $ git clone https://git.savannah.gnu.org/git/make.git
|
|
|
|
|
# $ cd make && git checkout -b nixpkgs $version
|
|
|
|
|
# $ git am --directory=../patches
|
|
|
|
|
# $ # make changes, resolve conflicts, etc.
|
|
|
|
|
# $ git format-patch --output-directory ../patches --diff-algorithm=histogram $version
|
|
|
|
|
#
|
|
|
|
|
# TODO: stdenv’s setup.sh should be aware of patch directories. It’s very
|
|
|
|
|
# convenient to keep them in a separate directory but we can defer listing the
|
|
|
|
|
# directory until derivation realization to avoid unnecessary Nix evaluations.
|
|
|
|
|
patches = lib.filesystem.listFilesRecursive ./patches;
|
2020-07-18 16:06:22 +00:00
|
|
|
|
|
2024-09-19 14:19:46 +00:00
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
2022-08-21 13:32:41 +00:00
|
|
|
|
buildInputs = lib.optionals guileEnabled [ guile ];
|
2020-07-18 16:06:22 +00:00
|
|
|
|
|
2022-08-21 13:32:41 +00:00
|
|
|
|
configureFlags = lib.optional guileEnabled "--with-guile"
|
2020-07-18 16:06:22 +00:00
|
|
|
|
|
|
|
|
|
# Make uses this test to decide whether it should keep track of
|
|
|
|
|
# subseconds. Apple made this possible with APFS and macOS 10.13.
|
|
|
|
|
# However, we still support macOS 10.11 and 10.12. Binaries built
|
|
|
|
|
# in Nixpkgs will be unable to use futimens to set mtime less than
|
|
|
|
|
# a second. So, tell Make to ignore nanoseconds in mtime here by
|
|
|
|
|
# overriding the autoconf test for the struct.
|
|
|
|
|
# See https://github.com/NixOS/nixpkgs/issues/51221 for discussion.
|
2024-09-26 11:04:55 +00:00
|
|
|
|
++ lib.optional stdenv.hostPlatform.isDarwin "ac_cv_struct_st_mtim_nsec=no";
|
2020-07-18 16:06:22 +00:00
|
|
|
|
|
|
|
|
|
outputs = [ "out" "man" "info" ];
|
2022-01-26 04:04:25 +00:00
|
|
|
|
separateDebugInfo = true;
|
2020-07-18 16:06:22 +00:00
|
|
|
|
|
2022-08-21 13:32:41 +00:00
|
|
|
|
passthru.tests = {
|
|
|
|
|
# make sure that the override doesn't break bootstrapping
|
|
|
|
|
gnumakeWithGuile = gnumake.override { guileSupport = true; };
|
|
|
|
|
};
|
|
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
|
meta = with lib; {
|
2024-06-20 14:57:18 +00:00
|
|
|
|
description = "Tool to control the generation of non-source files from sources";
|
2020-07-18 16:06:22 +00:00
|
|
|
|
longDescription = ''
|
|
|
|
|
Make is a tool which controls the generation of executables and
|
|
|
|
|
other non-source files of a program from the program's source files.
|
|
|
|
|
|
|
|
|
|
Make gets its knowledge of how to build your program from a file
|
|
|
|
|
called the makefile, which lists each of the non-source files and
|
|
|
|
|
how to compute it from other files. When you write a program, you
|
|
|
|
|
should write a makefile for it, so that it is possible to use Make
|
|
|
|
|
to build and install the program.
|
|
|
|
|
'';
|
2022-05-18 14:49:53 +00:00
|
|
|
|
homepage = "https://www.gnu.org/software/make/";
|
2020-07-18 16:06:22 +00:00
|
|
|
|
|
2022-05-18 14:49:53 +00:00
|
|
|
|
license = licenses.gpl3Plus;
|
2024-07-27 06:49:29 +00:00
|
|
|
|
maintainers = [ ];
|
2022-05-18 14:49:53 +00:00
|
|
|
|
mainProgram = "make";
|
|
|
|
|
platforms = platforms.all;
|
2020-07-18 16:06:22 +00:00
|
|
|
|
};
|
|
|
|
|
}
|