Merge pull request #226986 from gaykitty/add/fre

This commit is contained in:
Janik 2023-06-26 21:09:49 +02:00 committed by GitHub
commit c873ba3b1a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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

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