about summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorfigsoda <figsoda@pm.me>2023-09-10 20:44:49 -0400
committerGitHub <noreply@github.com>2023-09-10 20:44:49 -0400
commitca40349951374b558bc49465f92f1ff8856f095d (patch)
treee308ee6fe0a7c3720d4a0b19bf873e53dd7f62cd /pkgs/tools
parent44c86925e1b92b833f60f05874c7638dd77fa4da (diff)
parent2c5f722cfc65ae5a57c896598f6b0137af35ff22 (diff)
Merge pull request #254460 from CobaltCause/engage
engage: 0.1.2 -> 0.1.3
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/misc/engage/default.nix46
1 files changed, 0 insertions, 46 deletions
diff --git a/pkgs/tools/misc/engage/default.nix b/pkgs/tools/misc/engage/default.nix
deleted file mode 100644
index f9b0f411ee8a3..0000000000000
--- a/pkgs/tools/misc/engage/default.nix
+++ /dev/null
@@ -1,46 +0,0 @@
-{ lib
-, installShellFiles
-, rustPlatform
-, fetchgit
-}:
-
-let
-  pname = "engage";
-  version = "0.1.2";
-in
-rustPlatform.buildRustPackage {
-  inherit pname version;
-
-  # fetchFromGitLab doesn't work on GitLab's end for unknown reasons
-  src = fetchgit {
-    url = "https://or.computer.surgery/charles/${pname}";
-    rev = "v${version}";
-    hash = "sha256-7zLFgTLeAIaMMoj0iThH/5UhnV9OUGe9CVwbbShCieo=";
-  };
-
-  cargoHash = "sha256-+4uqC0VoBSmkS9hYC1lzWeJmK873slZT04TljHPE+Eo=";
-
-  nativeBuildInputs = [
-    installShellFiles
-  ];
-
-  postInstall = "installShellCompletion --cmd ${pname} "
-    + builtins.concatStringsSep
-      " "
-      (builtins.map
-        (shell: "--${shell} <($out/bin/${pname} self completions ${shell})")
-        [
-          "bash"
-          "fish"
-          "zsh"
-        ]
-      );
-
-  meta = {
-    description = "A task runner with DAG-based parallelism";
-    homepage = "https://or.computer.surgery/charles/engage";
-    changelog = "https://or.computer.surgery/charles/engage/-/blob/v${version}/CHANGELOG.md";
-    license = with lib.licenses; [ asl20 mit ];
-    maintainers = with lib.maintainers; [ CobaltCause ];
-  };
-}