Merge pull request #111933 from thiagokokada/each-init
each: init at 0.1.3
This commit is contained in:
commit
a7a1a1f102
25
pkgs/tools/text/each/default.nix
Normal file
25
pkgs/tools/text/each/default.nix
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
{ lib
|
||||||
|
, fetchFromGitHub
|
||||||
|
, rustPlatform
|
||||||
|
}:
|
||||||
|
|
||||||
|
rustPlatform.buildRustPackage rec {
|
||||||
|
pname = "each";
|
||||||
|
version = "0.1.3";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "arraypad";
|
||||||
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "04rx8jf871l4darfx6029dhpnbpmzwjgzazayp1qcaadsk8207z5";
|
||||||
|
};
|
||||||
|
|
||||||
|
cargoSha256 = "1rcmymjff9sc0dv4zplklivfws14wqx6q4ky47arg6jkj3dyprp8";
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = " A better way of working with structured data on the command line";
|
||||||
|
homepage = "https://github.com/arraypad/each";
|
||||||
|
license = with licenses; [ mit ];
|
||||||
|
maintainers = with maintainers; [ thiagokokada ];
|
||||||
|
};
|
||||||
|
}
|
@ -232,6 +232,8 @@ in
|
|||||||
|
|
||||||
deadcode = callPackage ../development/tools/deadcode { };
|
deadcode = callPackage ../development/tools/deadcode { };
|
||||||
|
|
||||||
|
each = callPackage ../tools/text/each { };
|
||||||
|
|
||||||
eclipse-mat = callPackage ../development/tools/eclipse-mat { };
|
eclipse-mat = callPackage ../development/tools/eclipse-mat { };
|
||||||
|
|
||||||
glade = callPackage ../development/tools/glade { };
|
glade = callPackage ../development/tools/glade { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user