* Removed some unnecessary code.
svn path=/nixpkgs/trunk/; revision=12799
This commit is contained in:
parent
0c30058ac7
commit
35f684458a
@ -1,21 +0,0 @@
|
|||||||
source $stdenv/setup
|
|
||||||
|
|
||||||
# The Firefox pkgconfig files are buggy; they are called firefox-*.pc,
|
|
||||||
# but they refer to mozilla-*.pc. Also, mplayerplug-in requires
|
|
||||||
# mozilla-*.pc.
|
|
||||||
mkdir pkgconfig
|
|
||||||
for i in $firefox/lib/pkgconfig/*.pc; do
|
|
||||||
ln -s $i pkgconfig/$(echo $(basename $i) | sed s/firefox/mozilla/)
|
|
||||||
done
|
|
||||||
PKG_CONFIG_PATH=$NIX_BUILD_TOP/pkgconfig:$PKG_CONFIG_PATH
|
|
||||||
|
|
||||||
firefoxIncl=$(echo $firefox/include/firefox-*)
|
|
||||||
export NIX_CFLAGS_COMPILE="-I$firefoxIncl $NIX_CFLAGS_COMPILE"
|
|
||||||
|
|
||||||
installPhase() {
|
|
||||||
ensureDir $out/lib/mozilla/plugins
|
|
||||||
cp -p mplayerplug-in*.so mplayerplug-in*.xpt $out/lib/mozilla/plugins
|
|
||||||
}
|
|
||||||
|
|
||||||
genericBuild
|
|
||||||
|
|
@ -1,14 +1,8 @@
|
|||||||
{stdenv, fetchurl, pkgconfig, firefox, libXpm, gettext}:
|
{stdenv, fetchurl, pkgconfig, firefox, libXpm, gettext}:
|
||||||
|
|
||||||
# Note: we shouldn't be dependent on Firefox. The only thing we need
|
|
||||||
# are the include files so that we can access the plugin API (I
|
|
||||||
# think).
|
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "mplayerplug-in-3.55";
|
name = "mplayerplug-in-3.55";
|
||||||
|
|
||||||
builder = ./builder.sh;
|
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://sourceforge/mplayerplug-in/${name}.tar.gz";
|
url = "mirror://sourceforge/mplayerplug-in/${name}.tar.gz";
|
||||||
sha256 = "0zkvqrzibrbljiccvz3rhbmgifxadlrfjylqpz48jnjx9kggynms";
|
sha256 = "0zkvqrzibrbljiccvz3rhbmgifxadlrfjylqpz48jnjx9kggynms";
|
||||||
@ -16,7 +10,10 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
buildInputs = [pkgconfig firefox (firefox.gtk) libXpm gettext];
|
buildInputs = [pkgconfig firefox (firefox.gtk) libXpm gettext];
|
||||||
|
|
||||||
inherit firefox;
|
installPhase = ''
|
||||||
|
ensureDir $out/lib/mozilla/plugins
|
||||||
|
cp -p mplayerplug-in*.so mplayerplug-in*.xpt $out/lib/mozilla/plugins
|
||||||
|
'';
|
||||||
|
|
||||||
passthru = {
|
passthru = {
|
||||||
mozillaPlugin = "/lib/mozilla/plugins";
|
mozillaPlugin = "/lib/mozilla/plugins";
|
||||||
|
Loading…
Reference in New Issue
Block a user