meta.homepage added to several packages

svn path=/nixpkgs/trunk/; revision=10417

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