Skip to content

Commit

Permalink
vieb: 11.0.0 -> 12.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tejing1 committed May 16, 2024
1 parent 2d3db17 commit 79bf741
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions packagesFunc/vieb.nix
Original file line number Diff line number Diff line change
@@ -1,23 +1,25 @@

{ stdenv, buildNpmPackage, fetchFromGitHub, electron, makeWrapper, python3, makeDesktopItem, nix-update-script, lib }:

buildNpmPackage rec {
pname = "vieb";
version = "11.0.0";
version = "12.0.0";

src = fetchFromGitHub {
owner = "Jelmerro";
repo = pname;
rev = version;
hash = "sha256-OBOxT2leZYD3td1+PJdLv7Nph/gY6U9tVC7b/fUmUJw=";
hash = "sha256-/gMAGmTsaS9B0qHXHq2Z/77LgcAMKjF6Mt7OiJ9l4wU=";
};

postPatch = ''
sed -i '/"electron"/d' package.json
'';

npmDepsHash = "sha256-vgp20qVT4JZ7U24uu9ZPkveXchMNcdbljodALAMAu9s=";
npmDepsHash = "sha256-sGDygjb9+tIBHykMUb3UGZrCF8btkFVObTdyx4Y3Q2c=";
makeCacheWritable = true;
dontNpmBuild = true;
env.ELECTRON_SKIP_BINARY_DOWNLOAD = 1;

nativeBuildInputs = [ makeWrapper ] ++ lib.optional stdenv.isAarch64 python3;

Expand Down

0 comments on commit 79bf741

Please sign in to comment.