Skip to content

Commit

Permalink
fselect: init at 0.6.7 (NixOS#73206)
Browse files Browse the repository at this point in the history
* fselect: init at 0.6.7

* Fix cargoSha256

Co-authored-by: zimbatm <zimbatm@users.noreply.github.com>
  • Loading branch information
Br1ght0ne and zimbatm committed Nov 11, 2019
1 parent 8b32328 commit 7b5194a
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
23 changes: 23 additions & 0 deletions pkgs/tools/misc/fselect/default.nix
Original file line number Diff line number Diff line change
@@ -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;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 { };
Expand Down

0 comments on commit 7b5194a

Please sign in to comment.