2012-07-26 16:50:50 -07:00
|
|
|
{ stdenv, fetchurl, openssl, curl, coreutils, gawk, bash, which }:
|
2011-02-24 03:25:16 -08:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2012-10-26 01:32:23 -07:00
|
|
|
name = "esniper-2.28.0";
|
2011-02-24 03:25:16 -08:00
|
|
|
|
|
|
|
src = fetchurl {
|
2012-10-26 01:32:23 -07:00
|
|
|
url = "mirror://sourceforge/esniper/esniper-2-28-0.tgz";
|
|
|
|
sha256 = "c2b0ccb757616b32f2d6cf54a4a5e367405fa7bcd6e6ed11835fe4f8a06a016b";
|
2011-02-24 03:25:16 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [openssl curl];
|
|
|
|
|
2012-07-27 02:21:32 -07:00
|
|
|
# Add support for CURL_CA_BUNDLE variable.
|
|
|
|
patches = [ ./find-ca-bundle.patch ];
|
|
|
|
|
2011-02-24 03:25:16 -08:00
|
|
|
postInstall = ''
|
2012-07-26 16:21:50 -07:00
|
|
|
sed <"frontends/snipe" >"$out/bin/snipe" \
|
2012-07-26 16:50:50 -07:00
|
|
|
-e "2i export PATH=\"$out/bin:${coreutils}/bin:${gawk}/bin:${bash}/bin:${which}/bin:\$PATH\""
|
2011-02-24 03:25:16 -08: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 08:24:54 -08:00
|
|
|
platforms = stdenv.lib.platforms.all;
|
2011-02-24 03:25:16 -08:00
|
|
|
maintainers = [ stdenv.lib.maintainers.simons ];
|
|
|
|
};
|
|
|
|
}
|