xsv: 0.12.2 -> 0.13.0
This commit is contained in:
parent
92b7a814f2
commit
59844d7a6e
@ -1,24 +1,22 @@
|
|||||||
{ stdenv, fetchFromGitHub, rustPlatform }:
|
{ stdenv, fetchFromGitHub, rustPlatform }:
|
||||||
|
|
||||||
with rustPlatform;
|
rustPlatform.buildRustPackage rec {
|
||||||
|
|
||||||
buildRustPackage rec {
|
|
||||||
name = "xsv-${version}";
|
name = "xsv-${version}";
|
||||||
version = "0.12.2";
|
version = "0.13.0";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "BurntSushi";
|
owner = "BurntSushi";
|
||||||
repo = "xsv";
|
repo = "xsv";
|
||||||
rev = "${version}";
|
rev = version;
|
||||||
sha256 = "0z1z3b6nzaid510jaikkawvpmv4kjphzz84p0hppq6vcp5jy00s2";
|
sha256 = "17v1nw36mrarrd5yv4xd3mpc1d7lvhd5786mqkzyyraf78pjg045";
|
||||||
};
|
};
|
||||||
|
|
||||||
cargoSha256 = "0pdzh2xr40dgwravh3i58g602bpszj6c8inggzgmq2kfk8ck6rgj";
|
cargoSha256 = "1qk5wkjm3d4dz5fldlq7rjlm602v0l04hxrbar2j6vhcz9w2r4n6";
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "A fast CSV toolkit written in Rust";
|
description = "A fast CSV toolkit written in Rust";
|
||||||
homepage = https://github.com/BurntSushi/xsv;
|
homepage = https://github.com/BurntSushi/xsv;
|
||||||
license = with licenses; [ unlicense ];
|
license = with licenses; [ unlicense /* or */ mit ];
|
||||||
maintainers = [ maintainers.jgertm ];
|
maintainers = [ maintainers.jgertm ];
|
||||||
platforms = platforms.all;
|
platforms = platforms.all;
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user