summaryrefslogtreecommitdiffstats
path: root/pkgs/development/compilers/gnatboot
diff options
context:
space:
mode:
authorShea Levy <shea@shealevy.com>2018-03-08 13:56:36 -0500
committerShea Levy <shea@shealevy.com>2018-03-08 13:56:36 -0500
commitc69d8bf5e606915820b30d6db8fa9dfa39766f67 (patch)
tree2a183cea5326f2095b082f4ac274c553faf35c53 /pkgs/development/compilers/gnatboot
parentfe565510cb6d090b19e7a263133ca1a841135c9b (diff)
treewide: Remove gnat support.
See discussion in https://github.com/NixOS/nixpkgs/commit/6ac7b19c978e951c124c5ea434c94f95f593888e.
Diffstat (limited to 'pkgs/development/compilers/gnatboot')
-rw-r--r--pkgs/development/compilers/gnatboot/default.nix48
1 files changed, 0 insertions, 48 deletions
diff --git a/pkgs/development/compilers/gnatboot/default.nix b/pkgs/development/compilers/gnatboot/default.nix
deleted file mode 100644
index a209e392bc6f..000000000000
--- a/pkgs/development/compilers/gnatboot/default.nix
+++ /dev/null
@@ -1,48 +0,0 @@
-{stdenv, fetchurl}:
-
-stdenv.mkDerivation {
- name = "gentoo-gnatboot-4.1";
-
- src = if stdenv.system == "i686-linux" then
- fetchurl {
- url = "mirror://gentoo/distfiles/gnatboot-4.1-i386.tar.bz2";
- sha256 = "0665zk71598204bf521vw68i5y6ccqarq9fcxsqp7ccgycb4lysr";
- }
- else if stdenv.system == "x86_64-linux" then
- fetchurl {
- url = "mirror://gentoo/distfiles/gnatboot-4.1-amd64.tar.bz2";
- sha256 = "1li4d52lmbnfs6llcshlbqyik2q2q4bvpir0f7n38nagp0h6j0d4";
- } else throw "Platform not supported";
-
- dontStrip=1;
-
- installPhase = ''
- mkdir -p $out
- cp -R * $out
- set +e
- for a in $out/bin/* ; do
- patchelf --interpreter $(cat $NIX_CC/nix-support/dynamic-linker) \
- --set-rpath $(cat $NIX_CC/nix-support/orig-libc)/lib:$(cat $NIX_CC/nix-support/orig-cc)/lib64:$(cat $NIX_CC/nix-support/orig-cc)/lib $a
- done
- set -e
- mv $out/bin/gnatgcc_2wrap $out/bin/gnatgcc
- ln -s $out/bin/gnatgcc $out/bin/gcc
- '';
-
- passthru = {
- langC = true; /* TRICK for gcc-wrapper to wrap it */
- langCC = false;
- langFortran = false;
- langAda = true;
- };
-
- meta = {
- homepage = http://gentoo.org;
- license = stdenv.lib.licenses.gpl3Plus; # runtime support libraries are typically LGPLv3+
- maintainers = [
- stdenv.lib.maintainers.viric
- ];
-
- platforms = stdenv.lib.platforms.linux;
- };
-}