1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-18 03:30:45 +00:00

feishin: use electron_31

As originally mentioned in #331868, feishin now [1] depends on Electron v31,
which was not packaged at the time (#325428).
It has since been fixed (by #333907).

[1]: https://github.com/jeffvli/feishin/blob/f2beeef/package.json#L234
This commit is contained in:
José Ribeiro 2024-08-23 00:59:01 +01:00
parent e4cf02f255
commit 3d159512d9
No known key found for this signature in database

View file

@ -3,7 +3,7 @@
stdenv,
buildNpmPackage,
fetchFromGitHub,
electron_30,
electron_31,
darwin,
copyDesktopItems,
makeDesktopItem,
@ -20,7 +20,7 @@ let
hash = "sha256-UOY0wjWGK7sal/qQbbkHjFUIA49QtbO+Ei6hSTOyHWk=";
};
electron = electron_30;
electron = electron_31;
in
buildNpmPackage {
inherit pname version;