1
0
Fork 0

Add AnonymousOverflow

This commit is contained in:
Daniel Kempkens 2023-02-15 15:00:38 +01:00
parent b226d7709d
commit c05ac20fac
Signed by: daniel
SSH key fingerprint: SHA256:Ks/MyhQYcPRQiwMKLAKquWCdCPe3JXlb1WttgnAoSeM
5 changed files with 27 additions and 1 deletions

View file

@ -19,6 +19,7 @@ jobs:
with: with:
name: nifoc name: nifoc
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
- run: nix build '.#anonymous-overflow'
- run: nix build '.#fennel-ls' - run: nix build '.#fennel-ls'
- run: nix build '.#luarocks-jsregexp' - run: nix build '.#luarocks-jsregexp'
- run: nix build '.#nitter-unstable' - run: nix build '.#nitter-unstable'
@ -39,6 +40,5 @@ jobs:
- run: nix build '.#cliclick' - run: nix build '.#cliclick'
- run: nix build '.#fennel-ls' - run: nix build '.#fennel-ls'
- run: nix build '.#luarocks-jsregexp' - run: nix build '.#luarocks-jsregexp'
- run: nix build '.#nitter-unstable'
- run: nix build '.#phantomjs' - run: nix build '.#phantomjs'
- run: nix build '.#q' - run: nix build '.#q'

View file

@ -3,8 +3,10 @@
## Software ## Software
* [agilebits-op](https://app-updates.agilebits.com/product_history/CLI2) * [agilebits-op](https://app-updates.agilebits.com/product_history/CLI2)
* [AnonymousOverflow](https://github.com/httpjamesm/AnonymousOverflow)
* [cliclick](https://github.com/BlueM/cliclick) * [cliclick](https://github.com/BlueM/cliclick)
* [fennel-ls](https://git.sr.ht/~xerool/fennel-ls) * [fennel-ls](https://git.sr.ht/~xerool/fennel-ls)
* [luarocks-jsregexp](https://github.com/kmarius/jsregexp) * [luarocks-jsregexp](https://github.com/kmarius/jsregexp)
* [nitter](https://github.com/zedeus/nitter)
* [phantomjs](https://github.com/ariya/phantomjs) * [phantomjs](https://github.com/ariya/phantomjs)
* [q](https://github.com/natesales/q) * [q](https://github.com/natesales/q)

View file

@ -5,6 +5,7 @@ let
in in
{ {
inherit (custom) agilebits-op; inherit (custom) agilebits-op;
inherit (custom) anonymous-overflow;
inherit (custom) cliclick; inherit (custom) cliclick;
inherit (custom) fennel-ls; inherit (custom) fennel-ls;
inherit (custom) luarocks-jsregexp; inherit (custom) luarocks-jsregexp;

View file

@ -2,6 +2,7 @@
{ {
agilebits-op = import ./packages/agilebits-op.nix { inherit system lib pkgs; }; agilebits-op = import ./packages/agilebits-op.nix { inherit system lib pkgs; };
anonymous-overflow = import ./packages/anonymous-overflow.nix { inherit system lib pkgs; };
cliclick = import ./packages/cliclick.nix { inherit system lib pkgs; }; cliclick = import ./packages/cliclick.nix { inherit system lib pkgs; };
fennel-ls = import ./packages/fennel-ls.nix { inherit system lib pkgs; }; fennel-ls = import ./packages/fennel-ls.nix { inherit system lib pkgs; };
luarocks-jsregexp = import ./packages/luarocks-jsregexp.nix { inherit system lib pkgs; }; luarocks-jsregexp = import ./packages/luarocks-jsregexp.nix { inherit system lib pkgs; };

View file

@ -0,0 +1,22 @@
{ system, lib, pkgs }:
pkgs.buildGoModule rec {
pname = "anonymous-overflow";
version = "1.7.1";
src = pkgs.fetchFromGitHub {
owner = "httpjamesm";
repo = "AnonymousOverflow";
rev = "v${version}";
sha256 = "sha256-bjwyxgUod3JFQ4AA0FM+N+n44uybhC07wKNdfxltAdE=";
};
vendorSha256 = "sha256-CAEGKBNqVnNJn8vP8yR93WKFNu/WLn9+kYinQQtiAYE=";
meta = with lib; {
description = "View StackOverflow in privacy and without the clutter.";
homepage = "https://github.com/httpjamesm/AnonymousOverflow";
license = [ licenses.mpl20 ];
platforms = [ "x86_64-darwin" "aarch64-darwin" "aarch64-linux" "x86_64-linux" ];
};
}