the great update
This commit is contained in:
21
pkgs/zen-browser/zen-browser.nix
Normal file
21
pkgs/zen-browser/zen-browser.nix
Normal 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
|
||||
'';
|
||||
}
|
||||
Reference in New Issue
Block a user