Remove proximity-sort
This commit is contained in:
parent
734318dcef
commit
27f740c9f5
5 changed files with 0 additions and 27 deletions
2
.github/workflows/build.yml
vendored
2
.github/workflows/build.yml
vendored
|
@ -20,7 +20,6 @@ jobs:
|
|||
name: nifoc
|
||||
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
|
||||
- run: nix build '.#fennel-luajit'
|
||||
- run: nix build '.#proximity-sort'
|
||||
- run: nix build '.#q'
|
||||
|
||||
build-x86_64-darwin:
|
||||
|
@ -37,5 +36,4 @@ jobs:
|
|||
- run: nix build '.#cliclick'
|
||||
- run: nix build '.#fennel-luajit'
|
||||
- run: nix build '.#phantomjs'
|
||||
- run: nix build '.#proximity-sort'
|
||||
- run: nix build '.#q'
|
||||
|
|
|
@ -6,5 +6,4 @@
|
|||
* [cliclick](https://github.com/BlueM/cliclick)
|
||||
* fennel-luajit
|
||||
* [phantomjs](https://github.com/ariya/phantomjs)
|
||||
* [proximity-sort](https://github.com/jonhoo/proximity-sort)
|
||||
* [q](https://github.com/natesales/q)
|
||||
|
|
|
@ -8,6 +8,5 @@ in
|
|||
inherit (custom) cliclick;
|
||||
inherit (custom) fennel-luajit;
|
||||
inherit (custom) phantomjs;
|
||||
inherit (custom) proximity-sort;
|
||||
inherit (custom) q;
|
||||
}
|
||||
|
|
|
@ -5,6 +5,5 @@
|
|||
cliclick = import ./packages/cliclick.nix { inherit system lib pkgs; };
|
||||
fennel-luajit = import ./packages/fennel-luajit.nix { inherit system lib pkgs; };
|
||||
phantomjs = import ./packages/phantomjs.nix { inherit system lib pkgs; };
|
||||
proximity-sort = import ./packages/proximity-sort.nix { inherit system lib pkgs; };
|
||||
q = import ./packages/q.nix { inherit system lib pkgs; };
|
||||
}
|
||||
|
|
|
@ -1,22 +0,0 @@
|
|||
{ system, lib, pkgs }:
|
||||
|
||||
pkgs.rustPlatform.buildRustPackage rec {
|
||||
pname = "proximity-sort";
|
||||
version = "1.0.7";
|
||||
|
||||
src = pkgs.fetchFromGitHub {
|
||||
owner = "jonhoo";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "ZDG45GETZfkCo6OO5DaN10EviaOf18k71Kw6Ni8ygDQ=";
|
||||
};
|
||||
|
||||
cargoSha256 = "sha256-/FF5CtUdf5uSu9AR9OPRXisYs6PRTwKwGWssxzVpb4g=";
|
||||
|
||||
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 = [ licenses.asl20 licenses.mit ];
|
||||
platforms = [ "x86_64-darwin" "aarch64-darwin" "aarch64-linux" "x86_64-linux" ];
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue