nixpkgs/pkgs/tools/text/xsv/default.nix

24 lines
638 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, rustPlatform }:
2018-05-12 23:02:52 +03:00
rustPlatform.buildRustPackage rec {
name = "xsv-${version}";
2018-05-12 23:02:52 +03:00
version = "0.13.0";
src = fetchFromGitHub {
owner = "BurntSushi";
repo = "xsv";
2018-05-12 23:02:52 +03:00
rev = version;
sha256 = "17v1nw36mrarrd5yv4xd3mpc1d7lvhd5786mqkzyyraf78pjg045";
};
2018-05-12 23:02:52 +03:00
cargoSha256 = "1qk5wkjm3d4dz5fldlq7rjlm602v0l04hxrbar2j6vhcz9w2r4n6";
meta = with stdenv.lib; {
description = "A fast CSV toolkit written in Rust";
homepage = https://github.com/BurntSushi/xsv;
2018-05-12 23:02:52 +03:00
license = with licenses; [ unlicense /* or */ mit ];
maintainers = [ maintainers.jgertm ];
platforms = platforms.all;
};
}