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

29 lines
733 B
Nix
Raw Normal View History

2020-03-12 10:20:00 +01:00
{ stdenv, fetchFromGitHub, rustPlatform, installShellFiles }:
rustPlatform.buildRustPackage rec {
pname = "fselect";
2020-11-21 23:04:52 +01:00
version = "0.7.2";
src = fetchFromGitHub {
owner = "jhspetersson";
repo = "fselect";
rev = version;
2020-11-21 23:04:52 +01:00
sha256 = "1cqa52n5y6g087w4yzc273jpxhzpinwkqd32azg03dkczbgx5b2v";
};
2020-11-21 23:04:52 +01:00
cargoSha256 = "00yhp2b74plrbi944apbxpkw2y6nbgf81sinfchw44ww1i58mfhj";
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 ];
maintainers = with maintainers; [ Br1ght0ne ];
};
}