pocket-casts: set electron version on top-level

main
P. R. d. O 3 years ago
parent 22a500a3f8
commit 5156f07c96
No known key found for this signature in database
GPG Key ID: 7B0FF33FF90110C7
  1. 15
      pkgs/applications/audio/pocket-casts/default.nix
  2. 4
      pkgs/top-level/all-packages.nix

@ -1,11 +1,7 @@
{ lib, stdenv, fetchurl, dpkg, autoPatchelfHook, makeWrapper, electron_12,
alsa-lib, gtk3, libXScrnSaver, libXtst, mesa, nss }:
{ lib, stdenv, fetchurl, dpkg, autoPatchelfHook, makeWrapper, electron
, alsa-lib, gtk3, libXScrnSaver, libXtst, mesa, nss }:
let
# Using Electron 12 to solve errors regarding threading
electron = electron_12;
in stdenv.mkDerivation rec {
stdenv.mkDerivation rec {
pname = "pocket-casts";
version = "0.5.0";
@ -41,8 +37,9 @@ in stdenv.mkDerivation rec {
'';
postFixup = ''
substituteInPlace $out/share/applications/pocket-casts.desktop --replace '"/opt/Pocket Casts/pocket-casts"' $out/bin/pocket-casts
substituteInPlace $out/share/applications/pocket-casts.desktop --replace '/usr/share/icons/hicolor/0x0/apps/pocket-casts.png' "pocket-casts"
substituteInPlace $out/share/applications/pocket-casts.desktop \
--replace '"/opt/Pocket Casts/pocket-casts"' $out/bin/pocket-casts \
--replace '/usr/share/icons/hicolor/0x0/apps/pocket-casts.png' "pocket-casts"
makeWrapper ${electron}/bin/electron \
$out/bin/pocket-casts \
--add-flags $out/opt/pocket-casts/resources/app.asar

@ -3404,7 +3404,9 @@ with pkgs;
pn = callPackage ../tools/text/pn { };
pocket-casts = callPackage ../applications/audio/pocket-casts { };
pocket-casts = callPackage ../applications/audio/pocket-casts {
electron = electron_12;
};
poweralertd = callPackage ../tools/misc/poweralertd { };

Loading…
Cancel
Save