forked from mirrors/nixpkgs
Merge pull request #192970 from figsoda/dum
This commit is contained in:
commit
e6f75275e4
23
pkgs/development/tools/dum/default.nix
Normal file
23
pkgs/development/tools/dum/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue