summary refs log tree commit diff
path: root/pkgs/applications/networking/browsers/mozilla-plugins/mozplugger/default.nix
blob: 890021b33d6e150bdeb9aeb0ec6fc641ca8ccc54 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
a :  
let 
  fetchurl = a.fetchurl;

  version = a.lib.attrByPath ["version"] "1.12.0" a; 
  buildInputs = with a; [
    firefox libX11 xproto
  ];
in
rec {
  src = fetchurl {
    url = "http://mozplugger.mozdev.org/files/mozplugger-${version}.tar.gz";
    sha256 = "1vpggfmbv4h3srk80rgidd020i03hrkpb7cfxkwagkcd0zcal4hk";
  };

  inherit buildInputs;
  configureFlags = [];
  makeFlags = ["linux" "prefix=" "root=$out"];

  preBuild = a.fullDepEntry(''
    sed -e s@/usr/@"$out/"@g -i mozplugger.c
  '') ["doUnpack" "minInit"];

  postInstall = a.fullDepEntry(''
    ensureDir $out/share/${name}/plugin
    ln -s $out/lib/mozilla/plugins/mozplugger.so $out/share/${name}/plugin
  '') ["doMakeInstall" "minInit" "defEnsureDir"];

  /* doConfigure should be removed if not needed */
  phaseNames = ["preBuild" "doMakeInstall" "postInstall"];
      
  name = "mozplugger-" + version;
  meta = {
    description = "Mozilla plugin for launching external program for handling in-page objects";
  };
}