Merge pull request #24473 from jgertm/tj/xsv

xsv: init at 0.11.0
This commit is contained in:
Benno Fünfstück 2017-04-22 00:26:10 +02:00 committed by GitHub
commit cfcceaee27
2 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,25 @@
{ stdenv, fetchFromGitHub, rustPlatform, makeWrapper }:
with rustPlatform;
buildRustPackage rec {
name = "xsv-${version}";
version = "0.11.0";
src = fetchFromGitHub {
owner = "BurntSushi";
repo = "xsv";
rev = "${version}";
sha256 = "169rp4izcjhhlrqrhvlvsbiz7wqfi6g3kjfgrddgvahp0ls29hls";
};
depsSha256 = "006sp66l2gybyk1n7lxp645k6drz5cgxcix376k8qr0v9jwadlqa";
meta = with stdenv.lib; {
description = "A fast CSV toolkit written in Rust";
homepage = https://github.com/BurntSushi/xsv;
license = with licenses; [ unlicense ];
maintainers = [ maintainers.jgertm ];
platforms = platforms.all;
};
}

View File

@ -4698,6 +4698,8 @@ with pkgs;
xsel = callPackage ../tools/misc/xsel { };
xsv = callPackages ../tools/text/xsv { };
xtreemfs = callPackage ../tools/filesystems/xtreemfs {};
xurls = callPackage ../tools/text/xurls {};