all-packages.nix: added jbidwatcher, a tool to monitor and snipe ebay auctions
svn path=/nixpkgs/trunk/; revision=27881
This commit is contained in:
parent
f5609042c0
commit
3815442cf4
50
pkgs/applications/misc/jbidwatcher/default.nix
Normal file
50
pkgs/applications/misc/jbidwatcher/default.nix
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
{ stdenv, fetchurl, jre }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "jbidwatcher";
|
||||||
|
version = "2.1.5";
|
||||||
|
|
||||||
|
name = "${pname}-${version}";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "http://www.jbidwatcher.com/download/JBidwatcher-${version}.jar";
|
||||||
|
sha256 = "0nrs9ly56cqn33dm1sjm53pzj1cf7jncwn4c8v0xyva4jqyz2y5p";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ jre ];
|
||||||
|
|
||||||
|
jarfile = "$out/share/java/${pname}/JBidwatcher.jar";
|
||||||
|
|
||||||
|
unpackPhase = "true";
|
||||||
|
|
||||||
|
buildPhase = "true";
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
ensureDir "$out/bin"
|
||||||
|
echo > "$out/bin/${pname}" "#!/bin/sh"
|
||||||
|
echo >>"$out/bin/${pname}" "${jre}/bin/java -Xmx512m -jar ${jarfile}"
|
||||||
|
chmod +x "$out/bin/${pname}"
|
||||||
|
install -D -m644 ${src} ${jarfile}
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
homepage = "http://www.jbidwatcher.com/";
|
||||||
|
description = "monitor and snipe Ebay auctions";
|
||||||
|
license = "LGPL";
|
||||||
|
|
||||||
|
longDescription = ''
|
||||||
|
A Java-based application allowing you to monitor auctions you're
|
||||||
|
not part of, submit bids, snipe (bid at the last moment), and
|
||||||
|
otherwise track your auction-site experience. It includes
|
||||||
|
adult-auction management, MANY currencies (pound, dollar (US,
|
||||||
|
Canada, Australian, and New Taiwanese) and euro, presently),
|
||||||
|
drag-and-drop of auction URLs, an original, unique and powerful
|
||||||
|
'multisniping' feature, a relatively nice UI, and is known to work
|
||||||
|
cleanly under Linux, Windows, Solaris, and MacOSX from the same
|
||||||
|
binary.
|
||||||
|
'';
|
||||||
|
|
||||||
|
platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin;
|
||||||
|
maintainers = [ stdenv.lib.maintainers.simons ];
|
||||||
|
};
|
||||||
|
}
|
@ -6415,6 +6415,8 @@ let
|
|||||||
inherit (gnome) libglade;
|
inherit (gnome) libglade;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
jbidwatcher = callPackage ../applications/misc/jbidwatcher { };
|
||||||
|
|
||||||
qrdecode = builderDefsPackage (import ../tools/graphics/qrdecode) {
|
qrdecode = builderDefsPackage (import ../tools/graphics/qrdecode) {
|
||||||
inherit libpng opencv;
|
inherit libpng opencv;
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user