1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-13 16:15:30 +00:00
nixpkgs/pkgs/applications/networking/esniper/default.nix

32 lines
995 B
Nix
Raw Normal View History

{ stdenv, fetchgit, openssl, curl, coreutils, gawk, bash, which }:
2019-08-13 22:52:01 +01:00
stdenv.mkDerivation {
2019-09-29 13:47:59 +01:00
name = "esniper-2.35.0-18-g4a59da0";
src = fetchgit {
url = "https://git.code.sf.net/p/esniper/git";
2019-09-29 13:47:59 +01:00
rev = "4a59da032aa4536b9e5ea95633247650412511db";
sha256 = "0d3vazh5q7wymqahggbb2apl9hgrm037y4s3j91d24hjgk2pzzyd";
};
2013-09-07 01:38:36 +01: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 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" \
2016-08-22 23:06:51 +01:00
-e "2i export PATH=\"$out/bin:${stdenv.lib.makeBinPath [ coreutils gawk bash which ]}:\$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 peti ];
2013-09-07 01:38:36 +01:00
platforms = platforms.all;
};
}