2021-02-05 17:12:51 +00:00
|
|
|
{ lib, stdenv, fetchurl }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2023-07-15 17:15:38 +00:00
|
|
|
# Note: this package is used for bootstrapping fetchurl, and thus
|
|
|
|
# cannot use fetchpatch! All mutable patches (generated by GitHub or
|
|
|
|
# cgit) that are needed here should be included directly in Nixpkgs as
|
|
|
|
# files.
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
let
|
2023-04-29 16:46:19 +00:00
|
|
|
rev = "63acb96f92473ceb5e21d873d7c0aee266b3d6d3";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
# Don't use fetchgit as this is needed during Aarch64 bootstrapping
|
|
|
|
configGuess = fetchurl {
|
|
|
|
url = "https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=${rev}";
|
2023-04-29 16:46:19 +00:00
|
|
|
sha256 = "049qgfh4xjd4fxd7ygm1phd5faqphfvhfcv8dsdldprsp86lf55v";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
configSub = fetchurl {
|
|
|
|
url = "https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=${rev}";
|
2023-04-29 16:46:19 +00:00
|
|
|
sha256 = "1rk30y27mzls49wyfdb5jhzjr08hkxl7xqhnxmhcmkvqlmpsjnxl";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
2020-08-20 17:08:02 +00:00
|
|
|
in stdenv.mkDerivation {
|
2020-04-24 23:36:52 +00:00
|
|
|
pname = "gnu-config";
|
2023-04-29 16:46:19 +00:00
|
|
|
version = "2023-01-21";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
buildCommand = ''
|
|
|
|
mkdir -p $out
|
|
|
|
cp ${configGuess} $out/config.guess
|
|
|
|
cp ${configSub} $out/config.sub
|
2022-03-30 09:31:56 +00:00
|
|
|
|
|
|
|
chmod +x $out/config.*
|
2020-04-24 23:36:52 +00:00
|
|
|
'';
|
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "Attempt to guess a canonical system name";
|
|
|
|
homepage = "https://savannah.gnu.org/projects/config";
|
|
|
|
license = licenses.gpl3;
|
|
|
|
# In addition to GPLv3:
|
|
|
|
# As a special exception to the GNU General Public License, if you
|
|
|
|
# distribute this file as part of a program that contains a
|
|
|
|
# configuration script generated by Autoconf, you may include it under
|
|
|
|
# the same distribution terms that you use for the rest of that
|
|
|
|
# program.
|
2023-04-29 16:46:19 +00:00
|
|
|
maintainers = with maintainers; [ dezgeg emilytrau ];
|
2020-04-24 23:36:52 +00:00
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|