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

31 lines
935 B
Nix
Raw Normal View History

{ stdenv, fetchurl, openssl, curl, coreutils, gawk, bash, which }:
stdenv.mkDerivation {
2014-06-11 10:05:06 +00:00
name = "esniper-2.31.0";
src = fetchurl {
2014-06-11 10:05:06 +00:00
url = "mirror://sourceforge/esniper/esniper-2-31-0.tgz";
sha256 = "0xn6gdyr0c18khwcsi2brp49wkancrsrxxca7hvbawhbf263glih";
};
2013-09-07 00:38:36 +00:00
buildInputs = [ openssl curl ];
# Add support for CURL_CA_BUNDLE variable.
# Fix <http://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" \
-e "2i export PATH=\"$out/bin:${coreutils}/bin:${gawk}/bin:${bash}/bin:${which}/bin:\$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 simons ];
platforms = platforms.all;
};
}