Merge pull request #192902 from figsoda/proximity-sort

proximity-sort: init at 1.2.0
This commit is contained in:
figsoda 2022-09-26 13:59:34 -04:00 committed by GitHub
commit 4a1de73b68
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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

@ -23813,6 +23813,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 { };