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

32 lines
988 B
Nix
Raw Normal View History

{ lib, stdenv, fetchgit, openssl, curl, coreutils, gawk, bash, which }:
2019-08-14 00:52:01 +03:00
stdenv.mkDerivation {
2020-02-08 18:08:53 +03:00
name = "esniper-2.35.0-21-g6379846";
src = fetchgit {
url = "https://git.code.sf.net/p/esniper/git";
2020-02-08 18:08:53 +03:00
rev = "637984623984ef36782d52d8968df7fae7bbb0a7";
sha256 = "1md3fzs0k88f6mgvrj1yrh96mn0qlca2p6vfqj6dnpyb8pjjwp8w";
};
2013-09-07 04:38:36 +04:00
buildInputs = [ openssl curl ];
# Add support for CURL_CA_BUNDLE variable.
2018-12-01 21:49:28 +03:00
# Fix <https://sourceforge.net/p/esniper/bugs/648/>.
2014-04-02 19:44:02 +04:00
patches = [ ./find-ca-bundle.patch ];
postInstall = ''
2012-07-27 03:21:50 +04:00
sed <"frontends/snipe" >"$out/bin/snipe" \
2021-01-15 08:42:41 +03:00
-e "2i export PATH=\"$out/bin:${lib.makeBinPath [ coreutils gawk bash which ]}:\$PATH\""
chmod 555 "$out/bin/snipe"
'';
meta = with lib; {
description = "Simple, lightweight tool for sniping eBay auctions";
homepage = "http://esniper.sourceforge.net";
2013-09-07 04:38:36 +04:00
license = licenses.gpl2;
maintainers = with maintainers; [ lovek323 peti ];
2013-09-07 04:38:36 +04:00
platforms = platforms.all;
};
}