summary refs log tree commit diff
path: root/pkgs/tools/networking/slimrat/default.nix
blob: f73a1bc5bcc8c2327c448fdc23d4ea452edb20b1 (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
{stdenv, fetchurl, perl, WWWMechanize, LWP, makeWrapper}:

stdenv.mkDerivation {
  name = "slimrat-1.0";
  src = fetchurl {
    url = http://slimrat.googlecode.com/files/slimrat-1.0.tar.bz2;
    sha256 = "139b71d45k4b1y47iq62a9732cnaqqbh8s4knkrgq2hx0jxpsk5a";
  };

  buildInputs = [ perl WWWMechanize LWP makeWrapper ];

  patchPhase = ''
    sed -e 's,#!.*,#!${perl}/bin/perl,' -i src/{slimrat,slimrat-gui}
  '';

  installPhase = ''
    mkdir -p $out/share/slimrat $out/bin
    cp -R src/* $out/share/slimrat
    # slimrat-gui does not work (it needs the Gtk2 perl package)
    for i in slimrat; do
      makeWrapper $out/share/slimrat/$i $out/bin/$i \
        --prefix PERL5LIB : $PERL5LIB
    done
  '';

  meta = {
    homepage = http://code.google.com/p/slimrat/;
    description = "Linux Rapidshare downloader";
    license = stdenv.lib.licenses.mit;
  };
}