2020-03-12 09:20:00 +00:00
|
|
|
{ stdenv, fetchFromGitHub, rustPlatform, installShellFiles }:
|
2019-11-11 10:25:16 +00:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "fselect";
|
2020-10-18 09:18:49 +01:00
|
|
|
version = "0.7.1";
|
2019-11-11 10:25:16 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "jhspetersson";
|
|
|
|
repo = "fselect";
|
|
|
|
rev = version;
|
2020-10-18 09:18:49 +01:00
|
|
|
sha256 = "1q7y5agsi6wjb1dnyvdhm4qmdhpv30cx5a8m1blks8is9z2bblz0";
|
2019-11-11 10:25:16 +00:00
|
|
|
};
|
|
|
|
|
2020-10-18 09:18:49 +01:00
|
|
|
cargoSha256 = "0r2zj0dvf6h4ph3b75z2rdlqwzkdjrjj2iad4dbf9nsr63giwd9n";
|
2019-11-11 10:25:16 +00:00
|
|
|
|
2020-03-12 09:20:00 +00:00
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
installManPage docs/fselect.1
|
|
|
|
'';
|
|
|
|
|
2019-11-11 10:25:16 +00:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Find files with SQL-like queries";
|
|
|
|
homepage = "https://github.com/jhspetersson/fselect";
|
|
|
|
license = with licenses; [ asl20 mit ];
|
2020-11-17 11:02:06 +00:00
|
|
|
maintainers = with maintainers; [ Br1ght0ne ];
|
2019-11-11 10:25:16 +00:00
|
|
|
};
|
|
|
|
}
|