diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ae3d519..6a9361b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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' diff --git a/README.md b/README.md index 0fc0555..d5461f3 100644 --- a/README.md +++ b/README.md @@ -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) diff --git a/overlay.nix b/overlay.nix index 9958614..cd28003 100644 --- a/overlay.nix +++ b/overlay.nix @@ -8,6 +8,5 @@ in inherit (custom) cliclick; inherit (custom) fennel-luajit; inherit (custom) phantomjs; - inherit (custom) proximity-sort; inherit (custom) q; } diff --git a/packages.nix b/packages.nix index b3df22d..32a7961 100644 --- a/packages.nix +++ b/packages.nix @@ -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; }; } diff --git a/packages/proximity-sort.nix b/packages/proximity-sort.nix deleted file mode 100644 index 31c020d..0000000 --- a/packages/proximity-sort.nix +++ /dev/null @@ -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" ]; - }; -}