mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
9820cb1bf2
changes: * buildPhase = "true" * buildPhase = ":"
52 lines
1.7 KiB
Nix
52 lines
1.7 KiB
Nix
{ 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} ./
|
|
'';
|
|
|
|
dontBuild = 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 ];
|
|
};
|
|
}
|