mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-02 17:09:09 +03:00
Merge pull request #217439 from CobaltCause/init-engage
engage: init at 0.1.2
This commit is contained in:
commit
6da99a7cf6
@ -2872,6 +2872,13 @@
|
|||||||
githubId = 718298;
|
githubId = 718298;
|
||||||
name = "Michael Livshin";
|
name = "Michael Livshin";
|
||||||
};
|
};
|
||||||
|
CobaltCause = {
|
||||||
|
name = "Charles Hall";
|
||||||
|
email = "charles@computer.surgery";
|
||||||
|
github = "CobaltCause";
|
||||||
|
githubId = 7003738;
|
||||||
|
matrix = "@charles:computer.surgery";
|
||||||
|
};
|
||||||
cobbal = {
|
cobbal = {
|
||||||
email = "andrew.cobb@gmail.com";
|
email = "andrew.cobb@gmail.com";
|
||||||
github = "cobbal";
|
github = "cobbal";
|
||||||
|
29
pkgs/tools/misc/engage/default.nix
Normal file
29
pkgs/tools/misc/engage/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -4554,6 +4554,8 @@ with pkgs;
|
|||||||
|
|
||||||
enca = callPackage ../tools/text/enca { };
|
enca = callPackage ../tools/text/enca { };
|
||||||
|
|
||||||
|
engage = callPackage ../tools/misc/engage { };
|
||||||
|
|
||||||
ent = callPackage ../tools/misc/ent { };
|
ent = callPackage ../tools/misc/ent { };
|
||||||
|
|
||||||
entwine = callPackage ../applications/graphics/entwine { };
|
entwine = callPackage ../applications/graphics/entwine { };
|
||||||
|
Loading…
Reference in New Issue
Block a user