nixpkgs/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer/default.nix
Eelco Dolstra 3bf404a3f2 * Let the Mozilla plugins announce where in their output the actual
plugins are, rather then requiring certain fixed directories.

svn path=/nixpkgs/trunk/; revision=2242
2005-02-16 11:24:40 +00:00

14 lines
350 B
Nix

{stdenv, fetchurl, zlib, libXmu}:
(stdenv.mkDerivation {
name = "flashplayer-7.0r25";
builder = ./builder.sh;
src = fetchurl {
url = http://catamaran.labs.cs.uu.nl/dist/tarballs/install_flash_player_7_linux.tar.gz;
md5 = "79c59a5ea29347e01c8e6575dd054cd1";
};
inherit zlib libXmu;
}) // {mozillaPlugin = "/lib/mozilla/plugins";}