aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-10-08 23:50:15 -0700
committerFuwn <[email protected]>2024-10-08 23:50:15 -0700
commit5201402583c13343f7449c16129ab28708c31ce2 (patch)
tree99361c4e88224fe1cd9869bafb3f43b5819c8878
parentfeat(pkgs): move zen-browser-bin to library function (diff)
downloadtsutsumi-5201402583c13343f7449c16129ab28708c31ce2.tar.xz
tsutsumi-5201402583c13343f7449c16129ab28708c31ce2.zip
feat(pkgs): add zen browser twilight release package
-rw-r--r--README.md3
-rw-r--r--flake.nix4
-rw-r--r--pkgs/zen-browser-twilight-bin.nix5
3 files changed, 11 insertions, 1 deletions
diff --git a/README.md b/README.md
index 6ae8581..cc25022 100644
--- a/README.md
+++ b/README.md
@@ -16,7 +16,6 @@ running `nix run github:Fuwn/tsutsumi#rui`. (or any other package in place of
for node.js
- [wakatime-ls](https://github.com/wakatime/zed-wakatime/tree/master/wakatime-ls)
\- A language server for [Wakatime](https://wakatime.com/).
-- [Zen Browser](https://zen-browser.app/) (`zen-browser-bin`) (alpha)
- [ahoviewer](https://github.com/ahodesuka/ahoviewer) - A GTK image viewer,
manga reader, and booru browser
- [BindToInterface](https://github.com/JsBergbau/BindToInterface)
@@ -47,6 +46,8 @@ running `nix run github:Fuwn/tsutsumi#rui`. (or any other package in place of
- [Thorium](https://thorium.rocks/) (`thorium`) - Chromium fork named after
radioactive element No. 90.
- [Yaak](https://yaak.app/) (`yaak`) - The API client for modern developers
+- [Zen Browser](https://zen-browser.app/) (`zen-browser-bin`) (Alpha)
+- [Zen Browser](https://zen-browser.app/) (`zen-browser-twilight-bin`) (Twilight)
## Installation
diff --git a/flake.nix b/flake.nix
index 16e250e..f592cfc 100644
--- a/flake.nix
+++ b/flake.nix
@@ -118,6 +118,10 @@
thorium = pkgs.callPackage ./pkgs/thorium.nix { };
yaak = pkgs.callPackage ./pkgs/yaak.nix { };
zen-browser-bin = pkgs.callPackage ./pkgs/zen-browser-bin.nix { inherit pkgs self; };
+
+ zen-browser-twilight-bin = pkgs.callPackage ./pkgs/zen-browser-twilight-bin.nix {
+ inherit pkgs self;
+ };
};
formatter = nixpkgs.legacyPackages."${system}".nixfmt-rfc-style;
diff --git a/pkgs/zen-browser-twilight-bin.nix b/pkgs/zen-browser-twilight-bin.nix
new file mode 100644
index 0000000..237cd95
--- /dev/null
+++ b/pkgs/zen-browser-twilight-bin.nix
@@ -0,0 +1,5 @@
+{ pkgs, self }:
+import "${self}/lib/zen-browser-bin.nix" {
+ version = "twilight";
+ hash = "sha256-ATaq5InnBdQ3C8jdqdGNQ/RwJtpmbE5kPluVUQUjkJM=";
+} { inherit pkgs; }