base16-schemes: unstable-2024-06-21 -> unstable-2024-11-12
[NixPkgs.git] / pkgs / by-name / ea / each / package.nix
blob688a9adf88473cac5b8ad0f0123c722953e40043
1 { lib
2 , fetchFromGitHub
3 , rustPlatform
4 }:
6 rustPlatform.buildRustPackage rec {
7   pname = "each";
8   version = "0.2.0";
10   src = fetchFromGitHub {
11     owner = "arraypad";
12     repo = pname;
13     rev = "v${version}";
14     sha256 = "sha256-5Aa/uHWrU4bpWd28Uddnuhmi6guHy09W9AU8sAfea6I=";
15   };
17   cargoHash = "sha256-sH9rraPNAIlW2KQVaZfYa10c1HHQpDgedY1+9e94RLE=";
19   meta = with lib; {
20     description = " A better way of working with structured data on the command line";
21     mainProgram = "each";
22     homepage = "https://github.com/arraypad/each";
23     license = with licenses; [ mit ];
24     maintainers = with maintainers; [ thiagokokada ];
25   };