the great update

This commit is contained in:
2025-03-07 17:04:41 +09:00
parent 442f46f622
commit 6216fcd751
77 changed files with 732 additions and 305 deletions

View File

@@ -0,0 +1,21 @@
{ lib, stdenv, ... }:
let
version = "1.7b";
in
stdenv.mkDerivation {
pname="zen-browser";
inherit version;
src = fetchTarball {
url = "https://github.com/zen-browser/desktop/releases/download/${version}/zen.linux-x86_64.tar.bz2";
sha256 = "0aig890fcynxwi7xi8jzd1w2gzg47n0jqfq76wvnkwcam611b2bp";
};
dontPatch = true;
dontConfigure = true;
dontBuild = true;
installPhase = ''
cp -r . $out
'';
}