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