dum: init at 0.1.19

This commit is contained in:
figsoda 2022-09-25 19:12:55 -04:00
parent ab72904494
commit eb687f6a27
2 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,23 @@
{ lib, rustPlatform, fetchFromGitHub }:
rustPlatform.buildRustPackage rec {
pname = "dum";
version = "0.1.19";
src = fetchFromGitHub {
owner = "egoist";
repo = pname;
rev = "v${version}";
sha256 = "0rnm59zhpaa8nbbh6rh53svnlb484q1k6s4wc4w9516b18xhmkca";
};
cargoSha256 = "sha256-aMx4xfWYiiz5TY/CVCogZ3WNR6md77jb8RKhhVwqeto=";
meta = with lib; {
description = "An npm scripts runner written in Rust";
homepage = "https://github.com/egoist/dum";
changelog = "https://github.com/egoist/dum/blob/v${version}/CHANGELOG.md";
license = licenses.mit;
maintainers = with maintainers; [ figsoda ];
};
}

View File

@ -3736,6 +3736,8 @@ with pkgs;
duf = callPackage ../tools/misc/duf { };
dum = callPackage ../development/tools/dum { };
inherit (ocaml-ng.ocamlPackages_4_10) dune_1;
inherit (ocamlPackages) dune_2 dune_3 dune-release;