about summary refs log tree commit diff
path: root/pkgs/development/compilers/ponyc/pony-corral.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/compilers/ponyc/pony-corral.nix')
-rw-r--r--pkgs/development/compilers/ponyc/pony-corral.nix35
1 files changed, 0 insertions, 35 deletions
diff --git a/pkgs/development/compilers/ponyc/pony-corral.nix b/pkgs/development/compilers/ponyc/pony-corral.nix
deleted file mode 100644
index 81bf2b0aebc5..000000000000
--- a/pkgs/development/compilers/ponyc/pony-corral.nix
+++ /dev/null
@@ -1,35 +0,0 @@
-{ lib
-, stdenv
-, fetchFromGitHub
-, ponyc
-, nix-update-script
-}:
-
-stdenv.mkDerivation (finalAttrs: {
-  pname = "corral";
-  version = "0.8.0";
-
-  src = fetchFromGitHub {
-    owner = "ponylang";
-    repo = "corral";
-    rev = finalAttrs.version;
-    hash = "sha256-+pHg5BFHlScC1suad0/3RqKAnxoEVZNUNj1EDLvbsfA=";
-  };
-
-  strictDeps = true;
-
-  nativeBuildInputs = [ ponyc ];
-
-  installFlags = [ "prefix=${placeholder "out"}" "install" ];
-
-  passthru.updateScript = nix-update-script { };
-
-  meta = with lib; {
-    description = "Corral is a dependency management tool for ponylang (ponyc)";
-    homepage = "https://www.ponylang.io";
-    changelog = "https://github.com/ponylang/corral/blob/${finalAttrs.version}/CHANGELOG.md";
-    license = licenses.bsd2;
-    maintainers = with maintainers; [ redvers ];
-    inherit (ponyc.meta) platforms;
-  };
-})