2016-03-04 10:46:38 +00:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
|
|
|
let
|
2020-05-07 09:32:14 +01:00
|
|
|
rev = "e78c96e5288993aaea3ec44e5c6ee755c668da79";
|
2016-03-04 10:46:38 +00:00
|
|
|
|
|
|
|
# Don't use fetchgit as this is needed during Aarch64 bootstrapping
|
|
|
|
configGuess = fetchurl {
|
2018-12-01 17:07:00 +00:00
|
|
|
url = "https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=${rev}";
|
2020-05-07 09:32:14 +01:00
|
|
|
sha256 = "sha256-TSLpYIDGSp1flqCBi2Sgg9IWDV5bcO+Hn2Menv3R6KU=";
|
2016-03-04 10:46:38 +00:00
|
|
|
};
|
|
|
|
configSub = fetchurl {
|
2018-12-01 17:07:00 +00:00
|
|
|
url = "https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=${rev}";
|
2020-05-07 09:32:14 +01:00
|
|
|
sha256 = "sha256-DkCGDN/DE3phQ1GO/Ua5ZPPtp0Ya93PnW3yfSK8EV9s=";
|
2016-03-04 10:46:38 +00:00
|
|
|
};
|
2020-05-07 09:32:14 +01:00
|
|
|
in stdenv.mkDerivation {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "gnu-config";
|
2020-05-07 09:32:14 +01:00
|
|
|
version = "2020-05-04";
|
2016-03-04 10:46:38 +00:00
|
|
|
|
|
|
|
buildCommand = ''
|
|
|
|
mkdir -p $out
|
|
|
|
cp ${configGuess} $out/config.guess
|
|
|
|
cp ${configSub} $out/config.sub
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Attempt to guess a canonical system name";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://savannah.gnu.org/projects/config";
|
2016-03-04 10:46:38 +00:00
|
|
|
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.
|
|
|
|
maintainers = [ maintainers.dezgeg ];
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|