fre: init at 0.3.1

This commit is contained in:
gaykitty 2023-04-19 00:54:52 -04:00
parent 1603d11595
commit 3fecef31e7
2 changed files with 25 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{ lib, rustPlatform, fetchFromGitHub }:
rustPlatform.buildRustPackage rec {
pname = "fre";
version = "0.3.1";
src = fetchFromGitHub {
owner = "camdencheek";
repo = "fre";
rev = version;
hash = "sha256-nG2+LsmmzAsan3ZjFXGPMz/6hTdj9jiDfgeAwNpu7Eg=";
};
cargoHash = "sha256-y0sWe7q5MKebwKObXRgRs348hmjZaklnhYdfUnHoYX0=";
meta = with lib; {
description = "A CLI tool for tracking your most-used directories and files";
homepage = "https://github.com/camdencheek/fre";
changelog = "https://github.com/camdencheek/fre/blob/${version}/CHANGELOG.md";
license = with licenses; [ mit ];
maintainers = with maintainers; [ gaykitty ];
};
}

View file

@ -4726,6 +4726,8 @@ with pkgs;
frawk = callPackage ../tools/text/frawk { };
fre = callPackage ../tools/misc/fre { };
frei = callPackage ../tools/misc/frei { };
fselect = callPackage ../tools/misc/fselect { };