Skip to content

Commit

Permalink
flashplayer-standalone: 25.0.0.127 -> 25.0.0.148
Browse files Browse the repository at this point in the history
  • Loading branch information
edolstra committed Apr 14, 2017
1 parent 7260564 commit 6a1f168
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,15 +49,13 @@

let
arch =
if stdenv.system == "x86_64-linux" then
if stdenv.system == "x86_64-linux" then
"x86_64"
else if stdenv.system == "i686-linux" then
"i386"
else throw "Flash Player is not supported on this platform";
in
stdenv.mkDerivation rec {
name = "flashplayer-standalone-${version}";
version = "25.0.0.127";
version = "25.0.0.148";

src = fetchurl {
url =
Expand All @@ -67,9 +65,9 @@ stdenv.mkDerivation rec {
"https://fpdownload.macromedia.com/pub/flashplayer/updaters/25/flash_player_sa_linux.x86_64.tar.gz";
sha256 =
if debug then
"07a8x1n997lmkxj74bkygh60shwzxzcvfxpz07pxj1nmvakmin51"
"1pkzpip8d3m92kyzap00xxq40yilgmaqnc47nak3i7gnbic8fa2r"
else
"0rzxfcvjjwbd1m6pyby8km4g5834zy5d5sih7xq3czds9x0a2jp2";
"0xxsbxnkf9xnljy6sn61jqx9xd1w0lm5mbw4ca7xk5rkc84ik91z";
};

nativeBuildInputs = [ unzip ];
Expand Down
6 changes: 3 additions & 3 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -13766,15 +13766,15 @@ with pkgs;
flac = callPackage ../applications/audio/flac { };

flashplayer = callPackage ../applications/networking/browsers/mozilla-plugins/flashplayer {
debug = config.flashplayer.debug or false;
debug = config.flashplayer.debug or false;
};

flashplayer-standalone = callPackage ../applications/networking/browsers/mozilla-plugins/flashplayer/standalone.nix {
debug = config.flashplayer.debug or false;
debug = config.flashplayer.debug or false;
};

flashplayer-standalone-debugger = flashplayer-standalone.override {
debug = true;
debug = true;
};

fluxbox = callPackage ../applications/window-managers/fluxbox { };
Expand Down

0 comments on commit 6a1f168

Please sign in to comment.