about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/ada/gnatcoll/core.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/libraries/ada/gnatcoll/core.nix')
-rw-r--r--nixpkgs/pkgs/development/libraries/ada/gnatcoll/core.nix47
1 files changed, 0 insertions, 47 deletions
diff --git a/nixpkgs/pkgs/development/libraries/ada/gnatcoll/core.nix b/nixpkgs/pkgs/development/libraries/ada/gnatcoll/core.nix
deleted file mode 100644
index 7fdd4e99d550..000000000000
--- a/nixpkgs/pkgs/development/libraries/ada/gnatcoll/core.nix
+++ /dev/null
@@ -1,47 +0,0 @@
-{ stdenv
-, lib
-, gnat
-, gprbuild
-, fetchFromGitHub
-, xmlada
-, which
-}:
-
-stdenv.mkDerivation rec {
-  pname = "gnatcoll-core";
-  version = "24.0.0";
-
-  src = fetchFromGitHub {
-    owner = "AdaCore";
-    repo = "gnatcoll-core";
-    rev = "v${version}";
-    sha256 = "1cks2w0inj9hvamsdxjriwxnx1igmx2khhr6kwxshsl30rs8nzvb";
-  };
-
-  nativeBuildInputs = [
-    gprbuild
-    which
-    gnat
-  ];
-
-  # propagate since gprbuild needs to find
-  # referenced GPR project definitions
-  propagatedBuildInputs = [
-    gprbuild # libgpr
-  ];
-
-  makeFlags = [
-    "prefix=${placeholder "out"}"
-    "PROCESSORS=$(NIX_BUILD_CORES)"
-    # confusingly, for gprbuild --target is autoconf --host
-    "TARGET=${stdenv.hostPlatform.config}"
-  ];
-
-  meta = with lib; {
-    homepage = "https://github.com/AdaCore/gnatcoll-core";
-    description = "GNAT Components Collection - Core packages";
-    license = licenses.gpl3Plus;
-    maintainers = [ maintainers.sternenseemann ];
-    platforms = platforms.all;
-  };
-}