Skip to content

Commit

Permalink
feishin: 0.5.1 -> 0.6.1
Browse files Browse the repository at this point in the history
Diff: jeffvli/feishin@v0.5.1...v0.6.1
Changelog: https://github.com/jeffvli/feishin/releases/tag/v0.6.1

Feishin now depends on electron_27; electron_25 has been marked
as EOL since 9652f98.

Fixes #287765 (package update request) and addresses #295770 (outdated Electron).
  • Loading branch information
jlbribeiro authored and yu-re-ka committed Apr 12, 2024
1 parent 528149b commit 623ac95
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions pkgs/applications/audio/feishin/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,30 +2,30 @@
lib,
buildNpmPackage,
fetchFromGitHub,
electron_25,
electron_27,
copyDesktopItems,
makeDesktopItem,
...
}:
let
pname = "feishin";
version = "0.5.1";
version = "0.6.1";

src = fetchFromGitHub {
owner = "jeffvli";
repo = pname;
rev = "v${version}";
hash = "sha256-7L1KufMiwqWgTvv7E1bDNL+epvNb5iLXI4Gee8w17qs=";
hash = "sha256-Nj8GwrH49ph14xvJldj5GQR4mlt9unCPEcgLrsH/sx8=";
};

electron = electron_25;
electron = electron_27;
in
buildNpmPackage {
pname = "feishin";
inherit version;

inherit src;
npmDepsHash = "sha256-TuNkVhNNOB23QnMXiGBWhDI0JXWnWdfI9MLvMq5xzJ8=";
npmDepsHash = "sha256-+pr9fWg/9kxkYMmthtqhjgF6MOomSQxVCO5V8tHHRdE=";

npmFlags = [ "--legacy-peer-deps" ];
makeCacheWritable = true;
Expand All @@ -51,7 +51,7 @@ buildNpmPackage {
inherit version;

src = "${src}/release/app";
npmDepsHash = "sha256-2tkds65buiT/p0fsuLk+vemvFYsmExanyJPiJOqlwP4=";
npmDepsHash = "sha256-MRwKxe1hoFs5bPXT6K/UspSDs9XBdcRJGvxGlTKExp4=";

npmFlags = [ "--ignore-scripts" ];
dontNpmBuild = true;
Expand Down

0 comments on commit 623ac95

Please sign in to comment.