2
0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-01-25 06:13:54 +00:00
nixpkgs/pkgs/by-name/ea/each/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
645 B
Nix
Raw Normal View History

2021-02-04 15:18:31 +00:00
{
lib,
fetchFromGitHub,
rustPlatform,
}:
rustPlatform.buildRustPackage rec {
pname = "each";
2022-05-27 09:44:18 +00:00
version = "0.2.0";
2021-02-04 15:18:31 +00:00
src = fetchFromGitHub {
owner = "arraypad";
repo = pname;
rev = "v${version}";
2022-05-27 09:44:18 +00:00
sha256 = "sha256-5Aa/uHWrU4bpWd28Uddnuhmi6guHy09W9AU8sAfea6I=";
2021-02-04 15:18:31 +00:00
};
cargoHash = "sha256-sH9rraPNAIlW2KQVaZfYa10c1HHQpDgedY1+9e94RLE=";
2021-02-04 15:18:31 +00:00
meta = with lib; {
description = " A better way of working with structured data on the command line";
mainProgram = "each";
2021-02-04 15:18:31 +00:00
homepage = "https://github.com/arraypad/each";
license = with licenses; [ mit ];
maintainers = with maintainers; [ thiagokokada ];
};
}