nixpkgs/pkgs/applications/networking/esniper/default.nix

31 lines
975 B
Nix
Raw Normal View History

{ stdenv, fetchurl, openssl, curl, coreutils, gawk, bash, which }:
2017-03-14 06:13:24 -07:00
stdenv.mkDerivation rec {
name = "esniper-2.35.0";
src = fetchurl {
url = "mirror://sourceforge/esniper/${stdenv.lib.replaceStrings ["."] ["-"] name}.tgz";
sha256 = "04iwjb42lw90c03125bjdpnm0fp78dmwf2j35r7mah0nwcrlagd9";
};
2013-09-06 17:38:36 -07:00
buildInputs = [ openssl curl ];
# 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 ];
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\""
chmod 555 "$out/bin/snipe"
'';
2013-09-06 17:38:36 -07:00
meta = with stdenv.lib; {
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;
maintainers = with maintainers; [ lovek323 peti ];
2013-09-06 17:38:36 -07:00
platforms = platforms.all;
};
}