proximity-sort: init at 1.2.0

This commit is contained in:
figsoda 2022-09-25 11:44:08 -04:00
parent ab72904494
commit cb1c43b488
2 changed files with 22 additions and 0 deletions

View file

@ -0,0 +1,20 @@
{ lib, rustPlatform, fetchCrate }:
rustPlatform.buildRustPackage rec {
pname = "proximity-sort";
version = "1.2.0";
src = fetchCrate {
inherit pname version;
sha256 = "sha256-So3cvL2F7wfcPVPEBspMLH4f5KSbVQeUKLJve/BXLA4=";
};
cargoSha256 = "sha256-VGxU3CD5pj0Hrt6nUbNU7eNEpNrzHp/WaFHAKPUz8DA=";
meta = with lib; {
description = "Simple command-line utility for sorting inputs by proximity to a path argument";
homepage = "https://github.com/jonhoo/proximity-sort";
license = with licenses; [ mit /* or */ asl20 ];
maintainers = with maintainers; [ figsoda ];
};
}

View file

@ -23788,6 +23788,8 @@ with pkgs;
prometheus-cpp = callPackage ../development/libraries/prometheus-cpp { };
proximity-sort = callPackage ../tools/misc/proximity-sort { };
psqlodbc = callPackage ../development/libraries/psqlodbc { };
public-inbox = perlPackages.callPackage ../servers/mail/public-inbox { };