1
0
Fork 0

Remove proximity-sort

This commit is contained in:
Daniel Kempkens 2022-08-08 01:11:00 +02:00
parent 734318dcef
commit 27f740c9f5
5 changed files with 0 additions and 27 deletions

View file

@ -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'

View file

@ -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)

View file

@ -8,6 +8,5 @@ in
inherit (custom) cliclick;
inherit (custom) fennel-luajit;
inherit (custom) phantomjs;
inherit (custom) proximity-sort;
inherit (custom) q;
}

View file

@ -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; };
}

View file

@ -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" ];
};
}