From b6d9105e489c944f12b85be608c8277d29bfb7b8 Mon Sep 17 00:00:00 2001 From: Daniel Kempkens Date: Mon, 27 Mar 2023 21:16:43 +0200 Subject: [PATCH] Remove luarocks-jsregexp --- .github/workflows/build.yml | 2 -- README.md | 1 - overlay.nix | 1 - packages.nix | 1 - packages/luarocks-jsregexp.nix | 21 --------------------- 5 files changed, 26 deletions(-) delete mode 100644 packages/luarocks-jsregexp.nix diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index babc3d1..eccf698 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -21,7 +21,6 @@ jobs: authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' - run: nix build '.#anonymous-overflow' - run: nix build '.#fennel-ls' - - run: nix build '.#luarocks-jsregexp' - run: nix build '.#nitter-unstable' - run: nix build '.#q' - run: nix build '.#rimgo' @@ -40,6 +39,5 @@ jobs: authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' - run: nix build '.#cliclick' - run: nix build '.#fennel-ls' - - run: nix build '.#luarocks-jsregexp' - run: nix build '.#phantomjs' - run: nix build '.#q' diff --git a/README.md b/README.md index bc79b39..601ee88 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,6 @@ * [AnonymousOverflow](https://github.com/httpjamesm/AnonymousOverflow) * [cliclick](https://github.com/BlueM/cliclick) * [fennel-ls](https://git.sr.ht/~xerool/fennel-ls) -* [luarocks-jsregexp](https://github.com/kmarius/jsregexp) * [nitter](https://github.com/zedeus/nitter) * [phantomjs](https://github.com/ariya/phantomjs) * [q](https://github.com/natesales/q) diff --git a/overlay.nix b/overlay.nix index 53894c8..bb285e5 100644 --- a/overlay.nix +++ b/overlay.nix @@ -8,7 +8,6 @@ in inherit (custom) anonymous-overflow; inherit (custom) cliclick; inherit (custom) fennel-ls; - inherit (custom) luarocks-jsregexp; inherit (custom) nitter-unstable; inherit (custom) phantomjs; inherit (custom) q; diff --git a/packages.nix b/packages.nix index 79a70c6..ca71cef 100644 --- a/packages.nix +++ b/packages.nix @@ -5,7 +5,6 @@ anonymous-overflow = import ./packages/anonymous-overflow.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; }; - luarocks-jsregexp = import ./packages/luarocks-jsregexp.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; }; q = import ./packages/q.nix { inherit system lib pkgs; }; diff --git a/packages/luarocks-jsregexp.nix b/packages/luarocks-jsregexp.nix deleted file mode 100644 index 529e2c0..0000000 --- a/packages/luarocks-jsregexp.nix +++ /dev/null @@ -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" ]; - }; -}