diff options
| author | Fuwn <[email protected]> | 2024-10-10 22:16:39 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-10-10 22:16:39 -0700 |
| commit | d6ef222799b7d7e94666b8d3ef2106d232984827 (patch) | |
| tree | 69bcb6d3062a77184622c5b292f8d2c276c61636 /pkgs | |
| parent | feat(flake): bump yae (diff) | |
| download | tsutsumi-d6ef222799b7d7e94666b8d3ef2106d232984827.tar.xz tsutsumi-d6ef222799b7d7e94666b8d3ef2106d232984827.zip | |
refactor(zen-browser): use yae for dependency pinning
Diffstat (limited to 'pkgs')
| -rw-r--r-- | pkgs/zen-browser-bin.nix | 9 | ||||
| -rw-r--r-- | pkgs/zen-browser-twilight-bin.nix | 9 |
2 files changed, 14 insertions, 4 deletions
diff --git a/pkgs/zen-browser-bin.nix b/pkgs/zen-browser-bin.nix index 0cb6c02..4efd9bc 100644 --- a/pkgs/zen-browser-bin.nix +++ b/pkgs/zen-browser-bin.nix @@ -1,5 +1,10 @@ -{ pkgs, self }: +{ + pkgs, + self, + yae, +}: import "${self}/lib/zen-browser-bin.nix" { + inherit (yae.zen-browser-bin) sha256; + version = "1.0.1-a.7"; - hash = "sha256-0EYfH8hFStQMpxn5YZ/EP4vX8sn4bGmWobpZgygTi7Y="; } { inherit pkgs; } diff --git a/pkgs/zen-browser-twilight-bin.nix b/pkgs/zen-browser-twilight-bin.nix index 5c316a1..7ae875a 100644 --- a/pkgs/zen-browser-twilight-bin.nix +++ b/pkgs/zen-browser-twilight-bin.nix @@ -1,5 +1,10 @@ -{ pkgs, self }: +{ + pkgs, + self, + yae, +}: import "${self}/lib/zen-browser-bin.nix" { + inherit (yae.zen-browser-twilight-bin) sha256; + version = "twilight"; - hash = "sha256-MAUJpJE3rqBcDAJqKwM8gCaRuAft32OvC75DSdctDHU="; } { inherit pkgs; } |