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