Add AnonymousOverflow
This commit is contained in:
parent
b226d7709d
commit
c05ac20fac
5 changed files with 27 additions and 1 deletions
2
.github/workflows/build.yml
vendored
2
.github/workflows/build.yml
vendored
|
@ -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'
|
||||||
|
|
|
@ -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)
|
||||||
|
|
|
@ -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;
|
||||||
|
|
|
@ -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; };
|
||||||
|
|
22
packages/anonymous-overflow.nix
Normal file
22
packages/anonymous-overflow.nix
Normal 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" ];
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue