python312Packages.types-aiobotocore: 2.15.2 -> 2.15.2.post3 (#361801)
[NixPkgs.git] / pkgs / tools / text / xsv / default.nix
blob62b6a83d3f326f253f2fe5b780fec889c4f64b72
1 { lib, stdenv, fetchFromGitHub, rustPlatform, Security }:
3 rustPlatform.buildRustPackage rec {
4   pname = "xsv";
5   version = "0.13.0";
7   src = fetchFromGitHub {
8     owner = "BurntSushi";
9     repo = "xsv";
10     rev = version;
11     sha256 = "17v1nw36mrarrd5yv4xd3mpc1d7lvhd5786mqkzyyraf78pjg045";
12   };
14   cargoHash = "sha256-y9f9eBMhSBx6L3cZyZ4VkNSB7yJ55khCskUp6t4HBq4=";
16   buildInputs = lib.optional stdenv.hostPlatform.isDarwin Security;
18   meta = with lib; {
19     description = "Fast CSV toolkit written in Rust";
20     mainProgram = "xsv";
21     homepage = "https://github.com/BurntSushi/xsv";
22     license = with licenses; [ unlicense /* or */ mit ];
23     maintainers = [ maintainers.jgertm ];
24   };