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 13:13:24 +00:00
stdenv.mkDerivation rec {
name = "esniper-2.35.0";
src = fetchurl {
url = "mirror://sourceforge/esniper/${stdenv.lib.replaceStrings ["."] ["-"] name}.tgz";
sha256 = "04iwjb42lw90c03125bjdpnm0fp78dmwf2j35r7mah0nwcrlagd9";
};
2013-09-07 00:38:36 +00:00
buildInputs = [ openssl curl ];
# 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 15:44:02 +00:00
patches = [ ./find-ca-bundle.patch ];
postInstall = ''
2012-07-26 23:21:50 +00:00
sed <"frontends/snipe" >"$out/bin/snipe" \
2016-08-22 22:06:51 +00:00
-e "2i export PATH=\"$out/bin:${stdenv.lib.makeBinPath [ coreutils gawk bash which ]}:\$PATH\""
chmod 555 "$out/bin/snipe"
'';
2013-09-07 00:38:36 +00:00
meta = with stdenv.lib; {
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 peti ];
2013-09-07 00:38:36 +00:00
platforms = platforms.all;
};
}