Merge pull request #84794 from filalex77/lsd-0.17.0

lsd: 0.16.0 -> 0.17.0
This commit is contained in:
Mario Rodas 2020-04-09 06:40:30 -05:00 committed by GitHub
commit a8cf8a31c6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,31 +1,31 @@
{ stdenv, fetchFromGitHub, rustPlatform }: { stdenv
, fetchFromGitHub
, rustPlatform
, installShellFiles
}:
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
pname = "lsd"; pname = "lsd";
version = "0.16.0"; version = "0.17.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "Peltoche"; owner = "Peltoche";
repo = pname; repo = pname;
rev = version; rev = version;
sha256 = "0fh5rz6slyjzz03bpjcl9gplk36vm7qcc0i0gvhsikwvw0cf3hym"; sha256 = "1vyww54fl4yfvszr0dh8ym2jd9gilrccmwkvl7rbx70sfqzsgaai";
}; };
cargoSha256 = "1z7sg9b7qsjw1hhc7dkvxz8xgf4k8jddr7gbnjr4d2569g97jf3f"; cargoSha256 = "13g0p6zh2b1z005lszll098d4lv62dzsxwhl76bianzrydif61lr";
preFixup = '' nativeBuildInputs = [ installShellFiles ];
install -Dm644 -t $out/share/zsh/site-functions/ target/release/build/lsd-*/out/_lsd postInstall = ''
install -Dm644 -t $out/share/fish/vendor_completions.d/ target/release/build/lsd-*/out/lsd.fish installShellCompletion target/release/build/lsd-*/out/{_lsd,lsd.{bash,fish}}
install -Dm644 -t $out/share/bash-completion/completions/ target/release/build/lsd-*/out/lsd.bash
''; '';
# Some tests fail, but Travis ensures a proper build
doCheck = false;
meta = with stdenv.lib; { meta = with stdenv.lib; {
homepage = https://github.com/Peltoche/lsd; homepage = https://github.com/Peltoche/lsd;
description = "The next gen ls command"; description = "The next gen ls command";
license = licenses.asl20; license = licenses.asl20;
maintainers = [ maintainers.marsam ]; maintainers = with maintainers; [ filalex77 marsam ];
}; };
} }