Merge pull request #192902 from figsoda/proximity-sort
proximity-sort: init at 1.2.0
This commit is contained in:
commit
4a1de73b68
2 changed files with 22 additions and 0 deletions
20
pkgs/tools/misc/proximity-sort/default.nix
Normal file
20
pkgs/tools/misc/proximity-sort/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue