summary refs log tree commit diff
path: root/pkgs/tools/text/xidel/default.nix
blob: 000584a50e109a8f471c0e3220ba31bd46a9ef85 (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{ stdenv, fetchurl, dpkg, patchelf }:

stdenv.mkDerivation rec {
  name = "xidel-${version}";
  version = "0.8.4";

  ## Source archive lacks file (manageUtils.sh), using pre-built package for now.
  #src = fetchurl {
  #  url = "mirror://sourceforge/videlibri/Xidel/Xidel%20${version}/${name}.src.tar.gz";
  #  sha256 = "1h5xn16lgzx0s94iyhxa50lk05yf0af44nzm5w5k57615nd82kz2";
  #};

  src =
    if stdenv.system == "x86_64-linux" then
      fetchurl {
        url = "mirror://sourceforge/videlibri/Xidel/Xidel%20${version}/xidel_${version}-1_amd64.deb";
        sha256 = "0gq95ag2661hsw8b7ii6z07ian832cz8g21lvq2cvps4a80ql1gi";
      }
    else if stdenv.system == "i686-linux" then
      fetchurl {
        url = "mirror://sourceforge/videlibri/Xidel/Xidel%20${version}/xidel_${version}-1_i386.deb";
        sha256 = "07yk5sk1p4jm0jmgjwdm2wq8d2wybi1wkn1qq5j5y03z1pdc3fi6";
      }
    else throw "xidel is not supported on ${stdenv.system}";

  buildInputs = [ dpkg patchelf ];

  unpackPhase = ''
    dpkg-deb -x ${src} ./
  '';

  buildPhase = "true";

  installPhase = ''
    mkdir -p "$out/bin"
    cp -a usr/* "$out/"
    interpreter="$(echo ${stdenv.glibc.out}/lib/ld-linux*)"
    patchelf --set-interpreter "$interpreter" "$out/bin/xidel"
    patchelf --set-rpath "${stdenv.lib.makeLibraryPath [stdenv.glibc]}" "$out/bin/xidel"
  '';

  meta = with stdenv.lib; {
    description = "Command line tool to download and extract data from html/xml pages";
    homepage = http://videlibri.sourceforge.net/xidel.html;
    # source contains no license info (AFAICS), but sourceforge says GPLv2
    license = licenses.gpl2;
    # more platforms will be supported when we switch to source build
    platforms = [ "i686-linux" "x86_64-linux" ];
    maintainers = [ maintainers.bjornfor ];
  };
}