2018-09-01 02:16:50 -07:00
|
|
|
{ stdenv, fetchurl, openssl, curl, coreutils, gawk, bash, which }:
|
2011-02-24 03:25:16 -08:00
|
|
|
|
2017-03-14 06:13:24 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2018-06-20 00:49:21 -07:00
|
|
|
name = "esniper-2.35.0";
|
2011-02-24 03:25:16 -08:00
|
|
|
|
2018-09-01 02:16:50 -07:00
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/esniper/${stdenv.lib.replaceStrings ["."] ["-"] name}.tgz";
|
|
|
|
sha256 = "04iwjb42lw90c03125bjdpnm0fp78dmwf2j35r7mah0nwcrlagd9";
|
|
|
|
};
|
2011-02-24 03:25:16 -08:00
|
|
|
|
2013-09-06 17:38:36 -07:00
|
|
|
buildInputs = [ openssl curl ];
|
2011-02-24 03:25:16 -08:00
|
|
|
|
2012-07-27 02:21:32 -07:00
|
|
|
# Add support for CURL_CA_BUNDLE variable.
|
2018-12-01 10:49:28 -08:00
|
|
|
# Fix <https://sourceforge.net/p/esniper/bugs/648/>.
|
2014-04-02 08:44:02 -07:00
|
|
|
patches = [ ./find-ca-bundle.patch ];
|
2012-07-27 02:21:32 -07:00
|
|
|
|
2011-02-24 03:25:16 -08:00
|
|
|
postInstall = ''
|
2012-07-26 16:21:50 -07:00
|
|
|
sed <"frontends/snipe" >"$out/bin/snipe" \
|
2016-08-22 15:06:51 -07:00
|
|
|
-e "2i export PATH=\"$out/bin:${stdenv.lib.makeBinPath [ coreutils gawk bash which ]}:\$PATH\""
|
2011-02-24 03:25:16 -08:00
|
|
|
chmod 555 "$out/bin/snipe"
|
|
|
|
'';
|
|
|
|
|
2013-09-06 17:38:36 -07:00
|
|
|
meta = with stdenv.lib; {
|
2011-02-24 03:25:16 -08:00
|
|
|
description = "Simple, lightweight tool for sniping eBay auctions";
|
2015-04-18 11:07:18 -07:00
|
|
|
homepage = http://esniper.sourceforge.net;
|
2013-09-06 17:38:36 -07:00
|
|
|
license = licenses.gpl2;
|
2016-05-16 13:30:20 -07:00
|
|
|
maintainers = with maintainers; [ lovek323 peti ];
|
2013-09-06 17:38:36 -07:00
|
|
|
platforms = platforms.all;
|
2011-02-24 03:25:16 -08:00
|
|
|
};
|
|
|
|
}
|