2012-07-27 01:50:50 +02:00
|
|
|
{ stdenv, fetchurl, openssl, curl, coreutils, gawk, bash, which }:
|
2011-02-24 12:25:16 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2012-02-06 22:26:46 +01:00
|
|
|
name = "esniper-2.27.0";
|
2011-02-24 12:25:16 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2012-02-06 22:26:46 +01:00
|
|
|
url = "mirror://sourceforge/esniper/esniper-2-27-0.tgz";
|
|
|
|
sha256 = "0ca9946395be8958d3eb28c9abc4a1a4d4c9134e4b6b3c3816f4631e3be25c02";
|
2011-02-24 12:25:16 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [openssl curl];
|
|
|
|
|
2012-07-27 11:21:32 +02:00
|
|
|
# Add support for CURL_CA_BUNDLE variable.
|
|
|
|
patches = [ ./find-ca-bundle.patch ];
|
|
|
|
|
2011-02-24 12:25:16 +01:00
|
|
|
postInstall = ''
|
2012-07-27 01:21:50 +02:00
|
|
|
sed <"frontends/snipe" >"$out/bin/snipe" \
|
2012-07-27 01:50:50 +02:00
|
|
|
-e "2i export PATH=\"$out/bin:${coreutils}/bin:${gawk}/bin:${bash}/bin:${which}/bin:\$PATH\""
|
2011-02-24 12:25:16 +01:00
|
|
|
chmod 555 "$out/bin/snipe"
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Simple, lightweight tool for sniping eBay auctions";
|
|
|
|
homepage = "http://esnipe.rsourceforge.net";
|
|
|
|
license = "GPLv2";
|
|
|
|
|
2011-02-24 17:24:54 +01:00
|
|
|
platforms = stdenv.lib.platforms.all;
|
2011-02-24 12:25:16 +01:00
|
|
|
maintainers = [ stdenv.lib.maintainers.simons ];
|
|
|
|
};
|
|
|
|
}
|