1
0
Fork 0

Remove luarocks-jsregexp

This commit is contained in:
Daniel Kempkens 2023-03-27 21:16:43 +02:00
parent 7fd936214b
commit b6d9105e48
Signed by: daniel
SSH key fingerprint: SHA256:Ks/MyhQYcPRQiwMKLAKquWCdCPe3JXlb1WttgnAoSeM
5 changed files with 0 additions and 26 deletions

View file

@ -21,7 +21,6 @@ jobs:
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
- run: nix build '.#anonymous-overflow' - run: nix build '.#anonymous-overflow'
- run: nix build '.#fennel-ls' - run: nix build '.#fennel-ls'
- run: nix build '.#luarocks-jsregexp'
- run: nix build '.#nitter-unstable' - run: nix build '.#nitter-unstable'
- run: nix build '.#q' - run: nix build '.#q'
- run: nix build '.#rimgo' - run: nix build '.#rimgo'
@ -40,6 +39,5 @@ jobs:
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
- 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 '.#phantomjs' - run: nix build '.#phantomjs'
- run: nix build '.#q' - run: nix build '.#q'

View file

@ -6,7 +6,6 @@
* [AnonymousOverflow](https://github.com/httpjamesm/AnonymousOverflow) * [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)
* [nitter](https://github.com/zedeus/nitter) * [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

@ -8,7 +8,6 @@ in
inherit (custom) anonymous-overflow; inherit (custom) anonymous-overflow;
inherit (custom) cliclick; inherit (custom) cliclick;
inherit (custom) fennel-ls; inherit (custom) fennel-ls;
inherit (custom) luarocks-jsregexp;
inherit (custom) nitter-unstable; inherit (custom) nitter-unstable;
inherit (custom) phantomjs; inherit (custom) phantomjs;
inherit (custom) q; inherit (custom) q;

View file

@ -5,7 +5,6 @@
anonymous-overflow = import ./packages/anonymous-overflow.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; };
nitter-unstable = import ./packages/nitter-unstable.nix { inherit system lib pkgs; }; nitter-unstable = import ./packages/nitter-unstable.nix { inherit system lib pkgs; };
phantomjs = import ./packages/phantomjs.nix { inherit system lib pkgs; }; phantomjs = import ./packages/phantomjs.nix { inherit system lib pkgs; };
q = import ./packages/q.nix { inherit system lib pkgs; }; q = import ./packages/q.nix { inherit system lib pkgs; };

View file

@ -1,21 +0,0 @@
{ system, lib, pkgs }:
pkgs.lua51Packages.buildLuarocksPackage rec {
pname = "jsregexp";
version = "0.0.6";
rockspecFilename = "./${pname}-${version}-1.rockspec";
src = pkgs.fetchFromGitHub {
owner = "kmarius";
repo = pname;
rev = "b096131504f5d2842fe225d40eb5a9eccca7db27";
hash = "sha256-T47r87FtrFnEw+a1CguqtPr3Wt/04M1xwLYw00K8aOQ=";
};
meta = with lib; {
description = "javascript (ECMA19) regular expressions for lua(snip)";
homepage = "https://github.com/kmarius/jsregexp";
license = [ licenses.mit ];
platforms = [ "x86_64-darwin" "aarch64-darwin" "aarch64-linux" "x86_64-linux" ];
};
}