mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-20 12:42:24 +00:00
meta.homepage added to several packages
svn path=/nixpkgs/branches/stdenv-updates/; revision=10431
This commit is contained in:
parent
21bfc11e8c
commit
98a81beaac
|
@ -29,8 +29,7 @@ stdenv.mkDerivation {
|
|||
(textClosure localDefs [addInputs (doDump "0") (noDepEntry "echo \$PATH; ar --version") doConfigure preBuild doMakeInstall postInstall doForceShare]);
|
||||
|
||||
meta = {
|
||||
description = "
|
||||
Audacity sound editor.
|
||||
";
|
||||
description = "Audacity sound editor.";
|
||||
homepage = http://audacity.sourceforge.net;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -8,4 +8,8 @@ stdenv.mkDerivation {
|
|||
};
|
||||
|
||||
patches = [./fix.patch];
|
||||
|
||||
meta = {
|
||||
homepage = http://xiph.org/paranoia;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -7,6 +7,9 @@ let
|
|||
url = "http://downloads.xiph.org/releases/flac/${name}.tar.gz";
|
||||
} // hash);
|
||||
buildInputs = [libogg];
|
||||
meta = {
|
||||
homepage = http://flac.sourceforge.net;
|
||||
};
|
||||
};
|
||||
in
|
||||
stdenv.lib.listOfListsToAttrs [
|
||||
|
|
|
@ -4,6 +4,6 @@ stdenv.mkDerivation {
|
|||
name = "lame-3.97";
|
||||
src = fetchurl {
|
||||
url = mirror://sourceforge/lame/lame-3.97.tar.gz ;
|
||||
sha256 = "05xy9lv6m9s013lzlvhxwvr1586c239xaiiwka52k18hs6k388qa";
|
||||
sha256 = "05xy9lv6m9s013lzlvhxwvr1586c239xaiiwka52k18hs6k388qa";
|
||||
};
|
||||
}
|
||||
|
|
|
@ -30,8 +30,7 @@ stdenv.mkDerivation rec {
|
|||
builder = writeScript (name + "-builder")
|
||||
(textClosure localDefs [doConfigure preBuild doMakeInstall doForceShare]);
|
||||
meta = {
|
||||
description = "
|
||||
Snd sound editor.
|
||||
";
|
||||
description = "Snd sound editor.";
|
||||
homepage = http://ccrma.stanford.edu/software/snd;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -14,5 +14,6 @@ stdenv.mkDerivation {
|
|||
|
||||
meta = {
|
||||
description = "A music player very similar to Winamp";
|
||||
homepage = http://www.xmms.org;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -20,4 +20,8 @@ stdenv.mkDerivation {
|
|||
substituteInPlace Makefile --replace /usr /no-such-path
|
||||
makeFlagsArray=(CC=gcc CXX=g++ PREFIX=$out MANDIR=$out/share/man CFGDIR=$out/etc)
|
||||
";
|
||||
|
||||
meta = {
|
||||
homepage = http://slim.berlios.de;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -1,9 +1,13 @@
|
|||
{stdenv, fetchurl} :
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "joe-3.3";
|
||||
src = fetchurl {
|
||||
url = mirror://sourceforge/joe-editor/joe-3.3.tar.gz;
|
||||
md5 = "02221716679c039c5da00c275d61dbf4";
|
||||
};
|
||||
name = "joe-3.3";
|
||||
src = fetchurl {
|
||||
url = mirror://sourceforge/joe-editor/joe-3.3.tar.gz;
|
||||
md5 = "02221716679c039c5da00c275d61dbf4";
|
||||
};
|
||||
|
||||
meta = {
|
||||
homepage = http://joe-editor.sourceforge.net;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -8,4 +8,8 @@ stdenv.mkDerivation {
|
|||
};
|
||||
buildInputs = [ncurses gettext];
|
||||
configureFlags = "--enable-tiny";
|
||||
|
||||
meta = {
|
||||
homepage = http://www.nano-editor.org;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -16,4 +16,8 @@ stdenv.mkDerivation {
|
|||
buildInputs = [x11 motif libXpm];
|
||||
|
||||
buildFlags = if stdenv.system == "i686-linux" then "linux" else "";
|
||||
|
||||
meta = {
|
||||
homepage = http://www.nedit.org;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -12,4 +12,8 @@ stdenv.mkDerivation {
|
|||
buildInputs = [ncurses];
|
||||
|
||||
NIX_CFLAGS_COMPILE="-D_BSD_SOURCE=1";
|
||||
|
||||
meta = {
|
||||
homepage = http://www.vim.org;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -57,5 +57,6 @@ args.stdenv.mkDerivation {
|
|||
|
||||
meta = {
|
||||
description = "The most popular clone of the VI editor";
|
||||
homepage = http://www.vim.org;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -14,8 +14,11 @@ args: with args;
|
|||
|
||||
buildInputs = [bzip2 freetype ghostscript graphviz libjpeg libpng
|
||||
libtiff libX11 libxml2 zlib libtool] ++ (if args ? tetex then [args.tetex] else [])
|
||||
++ (if args ? librsvg then [args.librsvg] else [])
|
||||
;
|
||||
++ (if args ? librsvg then [args.librsvg] else []);
|
||||
|
||||
meta = {
|
||||
homepage = http://www.imagemagick.org;
|
||||
};
|
||||
} // (if args ? tetex then {
|
||||
preConfigure = "
|
||||
export DVIDecodeDelegate=${args.tetex}/bin/dvips
|
||||
|
|
|
@ -10,4 +10,7 @@ stdenv.mkDerivation {
|
|||
|
||||
buildInputs = [python boost pkgconfig imagemagick];
|
||||
|
||||
meta = {
|
||||
homepage = http://www.imagemagick.org/script/api.php;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -11,5 +11,6 @@ stdenv.mkDerivation {
|
|||
|
||||
meta = {
|
||||
description = "Gnome Diagram drawing software.";
|
||||
homepage = http://www.gnome.org/projects/dia;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -23,4 +23,8 @@ stdenv.mkDerivation {
|
|||
];
|
||||
|
||||
inherit monoDLLFixer gtksharp sqlite libgnomeui;
|
||||
|
||||
meta = {
|
||||
homepage = http://f-spot.org;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -17,5 +17,6 @@ stdenv.mkDerivation {
|
|||
|
||||
meta = {
|
||||
description = "A fast image viewer";
|
||||
homepage = http://gqview.sourceforge.net;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -33,4 +33,8 @@ stdenv.mkDerivation {
|
|||
boost
|
||||
gettext
|
||||
];
|
||||
|
||||
meta = {
|
||||
homepage = http://www.inkscape.org;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -17,5 +17,6 @@ stdenv.mkDerivation {
|
|||
|
||||
meta = {
|
||||
description = "An interactive drawing tool for X11";
|
||||
homepage = http://xfig.org;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -3,7 +3,7 @@ stdenv.mkDerivation {
|
|||
name = "jedit-4.2";
|
||||
|
||||
src = fetchurl {
|
||||
url = http://kent.dl.sourceforge.net/sourceforge/jedit/jedit42source.tar.gz;
|
||||
url = mirror://sf/jedit/jedit42source.tar.gz;
|
||||
sha256 = "1ckqghsw2r30kfkqfgjl4k47gdwpz8c1h85haw0y0ymq4rqh798j";
|
||||
};
|
||||
|
||||
|
@ -22,7 +22,7 @@ stdenv.mkDerivation {
|
|||
|
||||
meta = {
|
||||
description = "really nice programmers editor written in Java. Give it a try";
|
||||
homepage = http://sourceforge.net/project/showfiles.php?group_id=588;
|
||||
homepage = http://www.jedit.org;
|
||||
license = "GPL";
|
||||
};
|
||||
}
|
||||
|
|
|
@ -18,4 +18,8 @@ stdenv.mkDerivation {
|
|||
(if xineramaSupport then libXinerama else null)
|
||||
];
|
||||
inherit fastStart;
|
||||
|
||||
meta = {
|
||||
homepage = http://www.adobe.com/products/reader;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -6,4 +6,8 @@ stdenv.mkDerivation {
|
|||
url = http://bluez.sf.net/download/bluez-firmware-1.1.tar.gz;
|
||||
md5 = "2f1c2d939108c865dd07bae3e819c573";
|
||||
};
|
||||
|
||||
meta = {
|
||||
homepage = http://www.bluez.org;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -7,4 +7,8 @@ stdenv.mkDerivation {
|
|||
md5 = "ae3729ab5592be06ed01b973d4b3e9fe";
|
||||
};
|
||||
buildInputs = [bluezLibs];
|
||||
|
||||
meta = {
|
||||
homepage = http://www.bluez.org;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -15,6 +15,7 @@ stdenv.mkDerivation {
|
|||
DjVu libre - a library and a viewer for djvu format - compression for
|
||||
scanned images.
|
||||
";
|
||||
homepage = http://djvu.sourceforge.net;
|
||||
};
|
||||
}
|
||||
|
||||
|
|
|
@ -1,7 +1,14 @@
|
|||
args: with args; stdenv.mkDerivation {
|
||||
args: with args;
|
||||
stdenv.mkDerivation {
|
||||
name="fetchmail-6.3.8";
|
||||
src = fetchurl {
|
||||
url = http://download.berlios.de/fetchmail/fetchmail-6.3.8.tar.bz2;
|
||||
sha256 = "5612f9af367f641e0efd084f44fcf1889669e711dbd8c60f6b7953e494d1b09b";
|
||||
};
|
||||
|
||||
patches = [ ./security-fix.patch ];
|
||||
|
||||
meta = {
|
||||
homepage = http://www.fetchmail.info;
|
||||
};
|
||||
}
|
||||
|
|
11
pkgs/applications/misc/fetchmail/security-fix.patch
Normal file
11
pkgs/applications/misc/fetchmail/security-fix.patch
Normal file
|
@ -0,0 +1,11 @@
|
|||
--- old/sink.c (revision 5118)
|
||||
+++ new/sink.c (revision 5119)
|
||||
@@ -262,7 +262,7 @@
|
||||
const char *md1 = "MAILER-DAEMON", *md2 = "MAILER-DAEMON@";
|
||||
|
||||
/* don't bounce in reply to undeliverable bounces */
|
||||
- if (!msg->return_path[0] ||
|
||||
+ if (!msg || !msg->return_path[0] ||
|
||||
strcmp(msg->return_path, "<>") == 0 ||
|
||||
strcasecmp(msg->return_path, md1) == 0 ||
|
||||
strncasecmp(msg->return_path, md2, strlen(md2)) == 0)
|
|
@ -9,4 +9,8 @@ stdenv.mkDerivation rec {
|
|||
buildInputs = [pkgconfig libgphoto2 libexif popt gettext];
|
||||
# There is a bug in 2.4.0 configure.ac (in their m4 macroses)
|
||||
patchPhase = "sed -e 's@_tmp=true@_tmp=false@' -i configure configure.ac";
|
||||
|
||||
meta = {
|
||||
homepage = http://www.gphoto.org;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -13,4 +13,8 @@ stdenv.mkDerivation {
|
|||
postConfigure = [ "sed 's|\\<gs\\>|${ghostscriptX}/bin/gs|g' -i src/*.am src/*.ad" ];
|
||||
|
||||
inherit ghostscriptX;
|
||||
|
||||
meta = {
|
||||
homepage = http://wwwthep.physik.uni-mainz.de/~plass/gv;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -11,5 +11,6 @@ stdenv.mkDerivation {
|
|||
|
||||
meta = {
|
||||
description = "GNU Hello, a classic computer science tool";
|
||||
homepage = http://www.gnu.org/software/hello/;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -11,8 +11,7 @@ stdenv.mkDerivation {
|
|||
buildInputs =[clisp];
|
||||
|
||||
meta = {
|
||||
description = "
|
||||
Maxima computer algebra system
|
||||
";
|
||||
description = "Maxima computer algebra system";
|
||||
homepage = http://maxima.sourceforge.net;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -12,7 +12,7 @@ stdenv.mkDerivation {
|
|||
|
||||
meta = {
|
||||
description = "postgresql admin gui tool";
|
||||
homepage = http://www.pgadmin.org/download/;
|
||||
homepage = http://www.pgadmin.org;
|
||||
license = "GPL2";
|
||||
};
|
||||
}
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
args: with args; stdenv.mkDerivation {
|
||||
args: with args;
|
||||
stdenv.mkDerivation {
|
||||
name="procmail-3.22";
|
||||
buildInputs = [stdenv.gcc.libc];
|
||||
installPhase = "
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
args: with args; stdenv.mkDerivation {
|
||||
args: with args;
|
||||
stdenv.mkDerivation {
|
||||
name = "rxvt-unicode-8.9";
|
||||
|
||||
buildInputs = [ libX11 libXt libXft perl ];
|
||||
|
|
|
@ -13,7 +13,7 @@ stdenv.mkDerivation {
|
|||
|
||||
meta= {
|
||||
description = "share mouse keyboard and clipboard between computers";
|
||||
homepage = http://synergy2;
|
||||
homepage = http://synergy2.sourceforge.net;
|
||||
license = "GPL";
|
||||
};
|
||||
}
|
||||
|
|
|
@ -10,5 +10,6 @@ stdenv.mkDerivation {
|
|||
|
||||
meta = {
|
||||
description = "A viewer for Microsoft HTML Help files";
|
||||
homepage = http://xchm.sourceforge.net;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -8,5 +8,9 @@ stdenv.mkDerivation rec {
|
|||
};
|
||||
buildInputs = [libXaw xproto libXt libX11 libSM libICE ncurses];
|
||||
configureFlags = ["--enable-wide-chars"];
|
||||
|
||||
meta = {
|
||||
homepage = http://invisible-island.net/xterm;
|
||||
};
|
||||
}
|
||||
|
||||
|
|
|
@ -50,6 +50,7 @@ stdenv.mkDerivation {
|
|||
|
||||
meta = {
|
||||
description = "Mozilla Firefox - the browser, reloaded";
|
||||
homepage = http://www.mozilla.com/en-US/firefox/;
|
||||
};
|
||||
|
||||
passthru = {inherit gtk;};
|
||||
|
|
|
@ -15,4 +15,7 @@ stdenv.mkDerivation {
|
|||
inherit gtk;
|
||||
|
||||
#patches = [./writable-copies.patch];
|
||||
meta = {
|
||||
homepage = http://www.mozilla.org;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -34,4 +34,8 @@ stdenv.mkDerivation rec {
|
|||
libPath =
|
||||
[glibc qt motif zlib libX11 libXt libXext libSM libICE libstdcpp5]
|
||||
++ (if motif != null then [motif ] else []);
|
||||
|
||||
meta = {
|
||||
homepage = http://www.opera.com;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -21,4 +21,8 @@ stdenv.mkDerivation {
|
|||
(if graphicsSupport then gdkpixbuf else null)
|
||||
];
|
||||
#patches = [./bsd.patch];
|
||||
|
||||
meta = {
|
||||
homepage = http://w3m.sourceforge.net;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -10,4 +10,8 @@ stdenv.mkDerivation {
|
|||
|
||||
inherit tcl tk libstdcpp;
|
||||
buildInputs = [which tcl tk x11 ];
|
||||
|
||||
meta = {
|
||||
homepage = http://amsn-project.net;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -9,6 +9,7 @@ stdenv.mkDerivation {
|
|||
|
||||
meta = {
|
||||
description = "OTR plugin for Pidgin IM.";
|
||||
homepage = http://www.cypherpunks.ca/otr;
|
||||
};
|
||||
|
||||
postInstall = "ln -s \$out/lib/pidgin \$out/share/pidgin-otr";
|
||||
|
|
|
@ -37,5 +37,6 @@ stdenv.mkDerivation {
|
|||
Enable it for user by linking to ~/.purple/plugins - from
|
||||
sw/share/pidgin-latex , not from store of course.
|
||||
";
|
||||
homepage = http://tapas.affenbande.org/wordpress/?page_id=70;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -38,5 +38,6 @@ stdenv.mkDerivation {
|
|||
configureFlags="--with-nspr-includes=${nss}/include/nspr --with-nspr-libs=${nss}/lib --with-nss-includes=${nss}/include/nss --with-nss-libs=${nss}/lib --with-ncurses-headers=${ncurses}/include";
|
||||
meta = {
|
||||
description = "Pidgin IM - XMPP(Jabber), AIM/ICQ, IRC, SIP etc client.";
|
||||
homepage = http://pidgin.im;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -9,4 +9,8 @@ stdenv.mkDerivation {
|
|||
buildInputs = [pkgconfig ncurses glib openssl];
|
||||
NIX_LDFLAGS = "-lncurses";
|
||||
configureFlags = "--with-proxy --with-ncurses --enable-ssl";
|
||||
|
||||
meta = {
|
||||
homepage = http://irssi.org;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -8,4 +8,8 @@ stdenv.mkDerivation {
|
|||
};
|
||||
buildInputs = [pkgconfig tcl gtk];
|
||||
configureFlags = "--disable-nls";
|
||||
|
||||
meta = {
|
||||
homepage = http://www.xchat.org;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -21,4 +21,8 @@ stdenv.mkDerivation {
|
|||
(if sslSupport then "--with-ssl" else "--without-ssl")
|
||||
(if imapSupport then "--enable-imap" else "--disable-imap")
|
||||
];
|
||||
|
||||
meta = {
|
||||
homepage = http://www.mutt.org;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue