esniper 2.24.0 is a simple, lightweight tool for sniping eBay auctions.
svn path=/nixpkgs/trunk/; revision=26086
This commit is contained in:
parent
ca1aa628b9
commit
f073bf2a3e
36
pkgs/applications/networking/default.nix
Normal file
36
pkgs/applications/networking/default.nix
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
{ stdenv, fetchurl, clisp, texinfo, perl }:
|
||||||
|
|
||||||
|
let
|
||||||
|
name = "maxima";
|
||||||
|
version = "5.23.2";
|
||||||
|
in
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
name = "${name}-${version}";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "mirror://sourceforge/${name}/${name}-${version}.tar.gz";
|
||||||
|
sha256 = "0x6fl7lm2jmybd5n3l5qpyvcj9f5zfwizk7wkbpgkjimh58n5skv";
|
||||||
|
};
|
||||||
|
|
||||||
|
preConfigure = ''
|
||||||
|
configureFlags="--infodir=$out/share/info --mandir=$out/share/man"
|
||||||
|
'';
|
||||||
|
|
||||||
|
buildInputs = [clisp texinfo perl];
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Maxima computer algebra system";
|
||||||
|
homepage = "http://maxima.sourceforge.net";
|
||||||
|
license = "GPLv2";
|
||||||
|
|
||||||
|
longDescription = ''
|
||||||
|
Maxima is a fairly complete computer algebra system written in
|
||||||
|
lisp with an emphasis on symbolic computation. It is based on
|
||||||
|
DOE-MACSYMA and licensed under the GPL. Its abilities include
|
||||||
|
symbolic integration, 3D plotting, and an ODE solver.
|
||||||
|
'';
|
||||||
|
|
||||||
|
platforms = stdenv.lib.platforms.unix;
|
||||||
|
maintainers = [ stdenv.lib.maintainers.simons ];
|
||||||
|
};
|
||||||
|
}
|
31
pkgs/applications/networking/esniper/default.nix
Normal file
31
pkgs/applications/networking/esniper/default.nix
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
{ stdenv, fetchurl, openssl, curl }:
|
||||||
|
|
||||||
|
let
|
||||||
|
name = "esniper";
|
||||||
|
in
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
name = "${name}-2.24.0";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "mirror://sourceforge/${name}/${name}-2-24-0.tgz";
|
||||||
|
sha256 = "0h3nlw64x2dczfd4nmz890pk9372iwfzwyyb8zyhiaymb34z5c52";
|
||||||
|
};
|
||||||
|
|
||||||
|
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.alld;
|
||||||
|
maintainers = [ stdenv.lib.maintainers.simons ];
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
|
@ -5914,6 +5914,8 @@ let
|
|||||||
|
|
||||||
espeak = callPackage ../applications/audio/espeak { };
|
espeak = callPackage ../applications/audio/espeak { };
|
||||||
|
|
||||||
|
esniper = callPackage ../applications/networking/esniper { };
|
||||||
|
|
||||||
evopedia = callPackage ../applications/misc/evopedia { };
|
evopedia = callPackage ../applications/misc/evopedia { };
|
||||||
|
|
||||||
# FIXME: Evince and other GNOME/GTK+ apps (e.g., Viking) provide
|
# FIXME: Evince and other GNOME/GTK+ apps (e.g., Viking) provide
|
||||||
|
Loading…
x
Reference in New Issue
Block a user