about summary refs log tree commit diff
path: root/pkgs/applications/networking/esniper/default.nix
blob: 4c153fa6ff5ad8af20a58a6302d1576522389ed4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{ stdenv, fetchurl, openssl, curl }:

stdenv.mkDerivation {
  name = "esniper-2.26.0";

  src = fetchurl {
    url = "mirror://sourceforge/esniper/esniper-2-26-0.tgz";
    sha256 = "5fd9a0f4b27b98deca303cd3d16c1ed060e05a165a40b2f4a9f8546db5e3877d";
  };

  buildInputs = [openssl curl];

  patches = [ ./fix-build-with-latest-curl.patch ];

  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 ];
  };
}