2012-07-26 23:50:50 +00:00
|
|
|
{ stdenv, fetchurl, openssl, curl, coreutils, gawk, bash, which }:
|
2011-02-24 11:25:16 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2014-06-11 10:05:06 +00:00
|
|
|
name = "esniper-2.31.0";
|
2011-02-24 11:25:16 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2014-06-11 10:05:06 +00:00
|
|
|
url = "mirror://sourceforge/esniper/esniper-2-31-0.tgz";
|
|
|
|
sha256 = "0xn6gdyr0c18khwcsi2brp49wkancrsrxxca7hvbawhbf263glih";
|
2011-02-24 11:25:16 +00:00
|
|
|
};
|
|
|
|
|
2013-09-07 00:38:36 +00:00
|
|
|
buildInputs = [ openssl curl ];
|
2011-02-24 11:25:16 +00:00
|
|
|
|
2012-07-27 09:21:32 +00:00
|
|
|
# Add support for CURL_CA_BUNDLE variable.
|
2014-03-23 21:30:48 +00:00
|
|
|
# Fix <http://sourceforge.net/p/esniper/bugs/648/>.
|
2014-04-02 15:44:02 +00:00
|
|
|
patches = [ ./find-ca-bundle.patch ];
|
2012-07-27 09:21:32 +00:00
|
|
|
|
2011-02-24 11:25:16 +00:00
|
|
|
postInstall = ''
|
2012-07-26 23:21:50 +00:00
|
|
|
sed <"frontends/snipe" >"$out/bin/snipe" \
|
2012-07-26 23:50:50 +00:00
|
|
|
-e "2i export PATH=\"$out/bin:${coreutils}/bin:${gawk}/bin:${bash}/bin:${which}/bin:\$PATH\""
|
2011-02-24 11:25:16 +00:00
|
|
|
chmod 555 "$out/bin/snipe"
|
|
|
|
'';
|
|
|
|
|
2013-09-07 00:38:36 +00:00
|
|
|
meta = with stdenv.lib; {
|
2011-02-24 11:25:16 +00:00
|
|
|
description = "Simple, lightweight tool for sniping eBay auctions";
|
2015-04-18 18:07:18 +00:00
|
|
|
homepage = http://esniper.sourceforge.net;
|
2013-09-07 00:38:36 +00:00
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = with maintainers; [ lovek323 simons ];
|
|
|
|
platforms = platforms.all;
|
2011-02-24 11:25:16 +00:00
|
|
|
};
|
|
|
|
}
|