1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
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 11:05:06 +01:00
name = "esniper-2.31.0";
src = fetchurl {
2014-06-11 11:05:06 +01:00
url = "mirror://sourceforge/esniper/esniper-2-31-0.tgz";
sha256 = "0xn6gdyr0c18khwcsi2brp49wkancrsrxxca7hvbawhbf263glih";
};
2013-09-07 01:38:36 +01:00
buildInputs = [ openssl curl ];
# Add support for CURL_CA_BUNDLE variable.
# Fix <http://sourceforge.net/p/esniper/bugs/648/>.
2014-04-02 16:44:02 +01:00
patches = [ ./find-ca-bundle.patch ];
postInstall = ''
2012-07-27 00:21:50 +01: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 01:38:36 +01:00
meta = with stdenv.lib; {
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;
maintainers = with maintainers; [ lovek323 simons ];
platforms = platforms.all;
};
}