engage: init at 0.1.2

This commit is contained in:
Charles Hall 2023-02-20 21:32:24 -08:00
parent 86d5d67fb5
commit e1ed95404d
No known key found for this signature in database
GPG key ID: 7B8E0645816E07CF
2 changed files with 31 additions and 0 deletions

View file

@ -0,0 +1,29 @@
{ lib
, 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=";
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 ];
};
}

View file

@ -4550,6 +4550,8 @@ with pkgs;
enca = callPackage ../tools/text/enca { };
engage = callPackage ../tools/misc/engage { };
ent = callPackage ../tools/misc/ent { };
entwine = callPackage ../applications/graphics/entwine { };