about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/gnu-config/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/libraries/gnu-config/default.nix')
-rw-r--r--nixpkgs/pkgs/development/libraries/gnu-config/default.nix38
1 files changed, 38 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/libraries/gnu-config/default.nix b/nixpkgs/pkgs/development/libraries/gnu-config/default.nix
new file mode 100644
index 000000000000..74b94e68f564
--- /dev/null
+++ b/nixpkgs/pkgs/development/libraries/gnu-config/default.nix
@@ -0,0 +1,38 @@
+{ lib, stdenv, fetchurl }:
+
+let
+  rev = "e78c96e5288993aaea3ec44e5c6ee755c668da79";
+
+  # 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}";
+    sha256 = "sha256-TSLpYIDGSp1flqCBi2Sgg9IWDV5bcO+Hn2Menv3R6KU=";
+  };
+  configSub = fetchurl {
+    url = "https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=${rev}";
+    sha256 = "sha256-DkCGDN/DE3phQ1GO/Ua5ZPPtp0Ya93PnW3yfSK8EV9s=";
+  };
+in stdenv.mkDerivation {
+  pname = "gnu-config";
+  version = "2020-05-04";
+
+  buildCommand = ''
+    mkdir -p $out
+    cp ${configGuess} $out/config.guess
+    cp ${configSub} $out/config.sub
+  '';
+
+  meta = with lib; {
+    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.
+    maintainers = [ maintainers.dezgeg ];
+    platforms = platforms.all;
+  };
+}