3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #192970 from figsoda/dum

This commit is contained in:
Sandro 2022-09-26 14:28:21 +02:00 committed by GitHub
commit e6f75275e4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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

@ -3739,6 +3739,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;