nixpkgs/pkgs/applications/networking/esniper/default.nix
Peter Simons 4e3dcd9254 esniper: updated to version 2.27.0
svn path=/nixpkgs/trunk/; revision=32087
2012-02-06 21:26:46 +00:00

29 lines
691 B
Nix

{ stdenv, fetchurl, openssl, curl }:
stdenv.mkDerivation {
name = "esniper-2.27.0";
src = fetchurl {
url = "mirror://sourceforge/esniper/esniper-2-27-0.tgz";
sha256 = "0ca9946395be8958d3eb28c9abc4a1a4d4c9134e4b6b3c3816f4631e3be25c02";
};
buildInputs = [openssl curl];
postInstall = ''
sed -e "2i export PATH=\"$out/bin:\$PATH\"" <"frontends/snipe" >"$out/bin/snipe"
chmod 555 "$out/bin/snipe"
'';
meta = {
description = "Simple, lightweight tool for sniping eBay auctions";
homepage = "http://esnipe.rsourceforge.net";
license = "GPLv2";
platforms = stdenv.lib.platforms.all;
maintainers = [ stdenv.lib.maintainers.simons ];
};
}