nixpkgs/pkgs/tools/misc/fselect/default.nix

30 lines
764 B
Nix
Raw Normal View History

2020-03-12 10:20:00 +01:00
{ stdenv, fetchFromGitHub, rustPlatform, installShellFiles }:
rustPlatform.buildRustPackage rec {
pname = "fselect";
2020-03-10 21:45:39 +01:00
version = "0.6.9";
src = fetchFromGitHub {
owner = "jhspetersson";
repo = "fselect";
rev = version;
2020-03-10 21:45:39 +01:00
sha256 = "0cgzvzdsy8vbiapgk1l5dp48c3kq0xmx53yfi486mx8nwvz3ksc0";
};
2020-03-10 21:45:39 +01:00
cargoSha256 = "0mjd9nmaggsszf0kx68yrvy3fqbn35v34c7q3584fv50ipqn6drb";
2020-03-12 10:20:00 +01:00
nativeBuildInputs = [ installShellFiles ];
postInstall = ''
installManPage docs/fselect.1
'';
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 ];
platforms = platforms.all;
};
}