Merge pull request #82279 from r-ryantm/auto-update/fselect

fselect: 0.6.8 -> 0.6.9
This commit is contained in:
Mario Rodas 2020-03-13 06:24:39 -05:00 committed by GitHub
commit 7b756b6536
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,17 +1,23 @@
{ stdenv, fetchFromGitHub, rustPlatform }:
{ stdenv, fetchFromGitHub, rustPlatform, installShellFiles }:
rustPlatform.buildRustPackage rec {
pname = "fselect";
version = "0.6.8";
version = "0.6.9";
src = fetchFromGitHub {
owner = "jhspetersson";
repo = "fselect";
rev = version;
sha256 = "1zccl60l557lhaaqb33myys4vp3jsnjqh3dxb22i46bff28s1w6c";
sha256 = "0cgzvzdsy8vbiapgk1l5dp48c3kq0xmx53yfi486mx8nwvz3ksc0";
};
cargoSha256 = "0023adx4xkm24p3nwj0j669xns4qf8insalcnlv3r2iv4138w10l";
cargoSha256 = "0mjd9nmaggsszf0kx68yrvy3fqbn35v34c7q3584fv50ipqn6drb";
nativeBuildInputs = [ installShellFiles ];
postInstall = ''
installManPage docs/fselect.1
'';
meta = with stdenv.lib; {
description = "Find files with SQL-like queries";