mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-18 02:05:51 +03:00
fselect: init at 0.6.7 (#73206)
* fselect: init at 0.6.7 * Fix cargoSha256 Co-authored-by: zimbatm <zimbatm@users.noreply.github.com>
This commit is contained in:
parent
8b323287f2
commit
7b5194aee9
23
pkgs/tools/misc/fselect/default.nix
Normal file
23
pkgs/tools/misc/fselect/default.nix
Normal file
@ -0,0 +1,23 @@
|
||||
{ stdenv, fetchFromGitHub, rustPlatform }:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "fselect";
|
||||
version = "0.6.7";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "jhspetersson";
|
||||
repo = "fselect";
|
||||
rev = version;
|
||||
sha256 = "0pg3ahx8rmzr585qa4vphd1vxcm1r3sx5iyi8ghg5nn6sibqy0z4";
|
||||
};
|
||||
|
||||
cargoSha256 = "0yf3xkxxlb9252r869wbiv3b3kpz4p5gp556sic63bp0acig6a76";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Find files with SQL-like queries";
|
||||
homepage = "https://github.com/jhspetersson/fselect";
|
||||
license = with licenses; [ asl20 mit ];
|
||||
maintainers = [ maintainers.filalex77 ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
@ -1692,6 +1692,8 @@ in
|
||||
|
||||
firestarter = callPackage ../applications/misc/firestarter { };
|
||||
|
||||
fselect = callPackage ../tools/misc/fselect { };
|
||||
|
||||
fsmon = callPackage ../tools/misc/fsmon { };
|
||||
|
||||
fsql = callPackage ../tools/misc/fsql { };
|
||||
|
Loading…
Reference in New Issue
Block a user