about summary refs log tree commit diff
path: root/pkgs/tools/admin/webdruid/default.nix
blob: ee81b0c053d94293d54517c71f17eeebab482db7 (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
a :  
let 
  s = import ./src-for-default.nix;
  buildInputs = with a; [
    zlib libpng freetype gd which libxml2
    geoip
  ];
in
rec {
  src = a.fetchUrlFromSrcInfo s;

  inherit (s) name;
  inherit buildInputs;
  configureFlags = [];

  /* doConfigure should be removed if not needed */
  phaseNames = ["doConfigure" "doMakeInstall" "doLinks"];
      
  doLinks = a.fullDepEntry (''
    ln -s shared_en.xsl $out/share/webdruid/classic/shared.xsl
  '') ["minInit"];

  meta = {
    description = "A web log analyzer";
    maintainers = [
      a.lib.maintainers.raskin
    ];
    platforms = a.lib.platforms.linux;
  };
}