2019-11-11 11:25:16 +01:00
|
|
|
{ stdenv, fetchFromGitHub, rustPlatform }:
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "fselect";
|
2020-01-07 18:47:52 +01:00
|
|
|
version = "0.6.8";
|
2019-11-11 11:25:16 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "jhspetersson";
|
|
|
|
repo = "fselect";
|
|
|
|
rev = version;
|
2020-01-07 18:47:52 +01:00
|
|
|
sha256 = "1zccl60l557lhaaqb33myys4vp3jsnjqh3dxb22i46bff28s1w6c";
|
2019-11-11 11:25:16 +01:00
|
|
|
};
|
|
|
|
|
2020-02-28 04:10:07 +01:00
|
|
|
cargoSha256 = "0023adx4xkm24p3nwj0j669xns4qf8insalcnlv3r2iv4138w10l";
|
2019-11-11 11:25:16 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Find files with SQL-like queries";
|
|
|
|
homepage = "https://github.com/jhspetersson/fselect";
|
|
|
|
license = with licenses; [ asl20 mit ];
|
2020-01-07 18:47:52 +01:00
|
|
|
maintainers = with maintainers; [ filalex77 ];
|
2019-11-11 11:25:16 +01:00
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|