Commit graph

2993 commits

Author SHA1 Message Date
Eelco Dolstra 607b0d3e80 * Rewrite all the SourceForge URLs to mirror://sourceforge/.
find . -name "*.nix" | while read fn; do sed 's^http://[a-z]*.dl.sourceforge.net/sourceforge/^mirror://sourceforge/^g' < $fn > $fn.new; mv $fn.new $fn; done

svn path=/nixpkgs/trunk/; revision=9198
2007-08-27 13:01:33 +00:00
Eelco Dolstra 45a2c87402 * Support for mirror:// URLs a la Gentoo (NIXPKGS-70). Instead of
fetchurl {
      url = http://heanet.dl.sourceforge.net/sourceforge/zapping/zapping-0.9.6.tar.bz2;
      md5 = "8306775c6a11de4d72345b5eee970ea6";
    };

  you can write

    fetchurl {
      url = mirror://sourceforge/zapping/zapping-0.9.6.tar.bz2;
      md5 = "8306775c6a11de4d72345b5eee970ea6";
    };

  which causes fetchurl to try the SourceForge mirrors listed in the
  `sourceforge' attribute in build-support/fetchurl/mirrors.nix.
  (They're currently tried in sequence, and the lists of mirrors are
  not configurable yet.)

  The syntax for mirror URLs is mirror://site/path/to/file, where
  `site' is currently one of `sourceforge', `gnu' (mirrors of
  ftp://ftp.gnu.org/pub/gnu) and `kernel' (mirrors of
  http://www.all.kernel.org/pub/).

svn path=/nixpkgs/trunk/; revision=9197
2007-08-27 12:44:01 +00:00
Michael Raskin 6d4fa01f1e Added strings-with-deps, a set of functions that are intended to
build a minimal text which includes given strings and satisfies
'dependencies' of type A requires B to go before it. Just like
global variable intialization must occur before using them. Supposed
to be used for constructing builder.sh .

svn path=/nixpkgs/trunk/; revision=9196
2007-08-26 21:59:31 +00:00
Andres Löh 1cb9fc74b7 * added propagated-user-env-packages for lhs2tex and polytable
svn path=/nixpkgs/trunk/; revision=9195
2007-08-24 20:15:00 +00:00
Eelco Dolstra c5ac83d138 * Docbook 5 XSL updated to 1.73.1 (1.73.0 was broken).
svn path=/nixpkgs/trunk/; revision=9193
2007-08-24 13:06:07 +00:00
Eelco Dolstra a0159dee8e * Reverted r6713, r6711, r4623, r3660, r2237. There rewrote fetchurl
URLs to http://nix.cs.uu.nl/dist/tarballs.  With content-addressable
  mirror support (r9190, NIXPKGS-70) this is no longer necessary:
  fetchurl will try to download from that location automatically.  So
  we can keep the original URLs.

svn path=/nixpkgs/trunk/; revision=9192
2007-08-24 12:32:36 +00:00
Eelco Dolstra c9bd5b7397 * Add Wine to the channel.
svn path=/nixpkgs/trunk/; revision=9191
2007-08-24 11:37:07 +00:00
Eelco Dolstra 50321b735b * Basic transparent mirror support in fetchurl (NIXPKGS-70). When
fetching a file with hash HASH of type TYPE, we first try to
  download <base-url>/<type>/<hash>, where <base-url> is one of a list
  of mirrors.  For instance, given

    src = fetchurl {
      url = http://releases.mozilla.org/pub/mozilla.org/firefox/releases/2.0.0.6/source/firefox-2.0.0.6-source.tar.bz2;
      sha1 = "eb72f55e4a8bf08e8c6ef227c0ade3d068ba1082";
    };

  and the mirror list [http://nix.cs.uu.nl/dist/tarballs], we first
  try to download

    eb72f55e4a

  and if that fails, we use the original URL.

  The list of mirrors is not yet user-configurable.

* `fetchurl' now also accepts an argument `urls' instead of `url' for
  a list of alternative download locations, which fetchurl will try in
  sequence.

svn path=/nixpkgs/trunk/; revision=9190
2007-08-23 15:22:30 +00:00
Armijn Hemel ec9d5c9471 update to 2.1.1
svn path=/nixpkgs/trunk/; revision=9187
2007-08-22 12:29:26 +00:00
Eelco Dolstra d0d721b0da * Latest libxml2, libxslt.
svn path=/nixpkgs/trunk/; revision=9186
2007-08-22 10:51:14 +00:00
Armijn Hemel 04fc7a2c92 bumpetybump for dovecot. This is untested. However, it is a nice and clean server to add upstart scripts for
svn path=/nixpkgs/trunk/; revision=9183
2007-08-21 21:30:16 +00:00
Armijn Hemel 5021eefe40 0.6 -> 0.8
svn path=/nixpkgs/trunk/; revision=9182
2007-08-21 20:51:34 +00:00
Eelco Dolstra 2f21c59a3f * Use FontForge to give Wine better fonts.
svn path=/nixpkgs/trunk/; revision=9181
2007-08-21 12:31:33 +00:00
Wouter den Breejen 1a6cd0ce1a ln -sf isn't strong enough sometimes..
svn path=/nixpkgs/trunk/; revision=9180
2007-08-21 12:29:46 +00:00
Eelco Dolstra 0481f172f6 * Assert Linux.
svn path=/nixpkgs/trunk/; revision=9179
2007-08-21 10:16:34 +00:00
Eelco Dolstra 3a3a9183a1 * Patch to fix Baldur's Gate 2 and other programs. See
http://bugs.winehq.org/show_bug.cgi?id=6975 and
  http://bugs.winehq.org/show_bug.cgi?id=2398.
  Based on http://bugs.winehq.org/attachment.cgi?id=5708.

svn path=/nixpkgs/trunk/; revision=9178
2007-08-21 09:10:20 +00:00
Eelco Dolstra 38ace454e9 * Wine locates a lot of libraries dynamically through dlopen(). Add
them to the RPATH so that the user doesn't have to set them in
  LD_LIBRARY_PATH.

svn path=/nixpkgs/trunk/; revision=9177
2007-08-21 00:00:23 +00:00
Eelco Dolstra aa983025d6 * Linux 2.6.21.7.
svn path=/nixpkgs/trunk/; revision=9176
2007-08-20 14:26:32 +00:00
Eelco Dolstra 16c6da0129 * Emacs 22.1. This is the default now, but 21.4 is still around
(as is the 23.0.0.1 alpha).

svn path=/nixpkgs/trunk/; revision=9175
2007-08-20 13:48:56 +00:00
Marc Weber f1cf8d1d7a adding purityPhase hasen't been such a good idea - untested and if a small thing changes everything has to be rebuilt..
svn path=/nixpkgs/trunk/; revision=9174
2007-08-20 13:39:59 +00:00
Eelco Dolstra b5db5e6e61 * Fix /bin/pwd and /bin/ls so that `firefox <filename>' works on
NixOS.

svn path=/nixpkgs/trunk/; revision=9173
2007-08-20 13:04:14 +00:00
Eelco Dolstra a6407349b1 * Updated Email::Simple, Email::Address.
svn path=/nixpkgs/trunk/; revision=9172
2007-08-20 12:11:07 +00:00
Marc Weber 3e6eebc6e5 fltk-2.0
svn path=/nixpkgs/trunk/; revision=9171
2007-08-20 10:42:09 +00:00
Marc Weber 0c9f5dc6a4 fltk-2.0
svn path=/nixpkgs/trunk/; revision=9170
2007-08-20 10:40:48 +00:00
Marc Weber 911556d127 hugs98
svn path=/nixpkgs/trunk/; revision=9169
2007-08-20 10:34:49 +00:00
Marc Weber 88640db58e hugs98 expression
svn path=/nixpkgs/trunk/; revision=9168
2007-08-20 10:33:42 +00:00
Marc Weber 8f3a8b5006 renamed chosenOptions to chooseOptionsByFlags and added support for optionals
(thus you don't need to write flag definitions, passing a dependency or not is enough)

svn path=/nixpkgs/trunk/; revision=9167
2007-08-19 17:24:05 +00:00
Marc Weber ee347e49c1 renamened assert to assertion because assert is a resnerved word,
fix of blocks errors ( blocking does work in all cases now )

svn path=/nixpkgs/trunk/; revision=9166
2007-08-19 04:32:02 +00:00
Eelco Dolstra a8bd020fe0 * Get Wine to work (basically) by linking it against Glibc 2.6 with
NPTL.  Apparently Wine doesn't work with Glibc 2.5 + LinuxThreads.

svn path=/nixpkgs/trunk/; revision=9165
2007-08-18 23:58:30 +00:00
Marc Weber a3a9d407da fix: listToAttrs added (which I had forgotten) when evaluating flags
svn path=/nixpkgs/trunk/; revision=9164
2007-08-18 22:29:00 +00:00
Marc Weber 6af4bd3ca6 primop functions listToAttrs (+test), __isAttrs, __trace added
new configuration style proposal in lib/default-unstable.nix

svn path=/nixpkgs/trunk/; revision=9163
2007-08-18 22:12:00 +00:00
Michael Raskin cfab5a8cf9 Now glibc-NPTL builds...
svn path=/nixpkgs/trunk/; revision=9162
2007-08-18 19:04:19 +00:00
Marc Weber a9f676e098 unpackSource is to be included in phases .. So you can set phases after calling unpackSource manually
cd $rootSource is called at end of unpackPhase

svn path=/nixpkgs/trunk/; revision=9161
2007-08-18 18:42:18 +00:00
Michael Raskin e6c5500d42 Changed package name to glibc-2.5-nptl ...
svn path=/nixpkgs/trunk/; revision=9160
2007-08-18 16:23:11 +00:00
Michael Raskin 88483fdb70 Noticed it is glibc-nptl, not ntpl as I mistyped.
svn path=/nixpkgs/trunk/; revision=9159
2007-08-18 16:22:10 +00:00
Michael Raskin ac311eb30a Added glibc-ntpl to all-packages.nix . I also do not know if it works.
svn path=/nixpkgs/trunk/; revision=9158
2007-08-18 16:20:14 +00:00
Eelco Dolstra 9cc12e9f05 * Old work on Glibc with NPTL. No idea if it compiles/works.
svn path=/nixpkgs/trunk/; revision=9157
2007-08-18 16:15:09 +00:00
Michael Raskin b184b70ee4 Added setup-new-2.sh, mostly based on patch to setup.sh by Yurii Kudryashov (urkud).
svn path=/nixpkgs/trunk/; revision=9154
2007-08-18 14:47:09 +00:00
Michael Raskin 7625cdadfb Added libwmf for handling embedded graphics in .doc files.
svn path=/nixpkgs/trunk/; revision=9153
2007-08-18 09:35:54 +00:00
Michael Raskin 8fd03a4dac Added wvVare - tools for converting Microsoft Word formats to usable ones.
svn path=/nixpkgs/trunk/; revision=9152
2007-08-18 08:32:12 +00:00
Armijn Hemel cf9bc5c79c update to 2.4.0-rc1. Does not fix NIXPKGS-54
svn path=/nixpkgs/trunk/; revision=9151
2007-08-18 01:20:34 +00:00
Eelco Dolstra eeb42a6dae * Doh.
svn path=/nixpkgs/trunk/; revision=9149
2007-08-17 13:37:53 +00:00
Eelco Dolstra f3b3d53600 * Sudo 1.6.9p4.
svn path=/nixpkgs/trunk/; revision=9148
2007-08-17 13:37:28 +00:00
Michael Raskin 282c064669 Moved pidgin-latex to pidgin-plugins, added aggregatable link for pidgin-otr.
svn path=/nixpkgs/trunk/; revision=9147
2007-08-17 09:31:09 +00:00
Armijn Hemel c8c3eb7c18 add Off The Record, encryption plugin for pidgin. Needs a pidgin wrapper to work nicely.
svn path=/nixpkgs/trunk/; revision=9146
2007-08-16 23:16:42 +00:00
Armijn Hemel 813f26af95 move some buildInputs to propagatedBuildInputs, since these are also used by some external Pidgin plugins
svn path=/nixpkgs/trunk/; revision=9145
2007-08-16 23:14:52 +00:00
Armijn Hemel 38871bf455 make libgcrypt propagated
svn path=/nixpkgs/trunk/; revision=9144
2007-08-16 22:05:38 +00:00
Armijn Hemel 41da7d8753 whoops, add libgcrypt and libotr here too
svn path=/nixpkgs/trunk/; revision=9143
2007-08-16 21:45:10 +00:00
Armijn Hemel a42c1d3486 add libgcrypt and libotr
svn path=/nixpkgs/trunk/; revision=9142
2007-08-16 21:44:48 +00:00
Armijn Hemel 63aa0fbb30 update to 2.1.0
svn path=/nixpkgs/trunk/; revision=9141
2007-08-16 21:07:45 +00:00
Armijn Hemel 8270fbe16c bump some versions
svn path=/nixpkgs/trunk/; revision=9140
2007-08-16 20:58:25 +00:00
Armijn Hemel e08a441603 add axel, a downloader with support for multiple connection for faster downloading
svn path=/nixpkgs/trunk/; revision=9139
2007-08-16 19:50:59 +00:00
Michael Raskin 54a1f25c4c Added conditional concatenation and used it for name and configureFlags generation.
svn path=/nixpkgs/trunk/; revision=9136
2007-08-15 21:17:11 +00:00
Michael Raskin 75747d3b1c Added possibility for flags= in calls to proposed template. As usual, look at huge Vim.
svn path=/nixpkgs/trunk/; revision=9135
2007-08-15 20:54:11 +00:00
Michael Raskin bf087c5cd4 Added option to override stdenv for all packages
svn path=/nixpkgs/trunk/; revision=9134
2007-08-15 15:45:27 +00:00
Andres Löh 920ce3551d * make ghc use the nix-provided gmp
- this fixes ghc on x86_64 and hopefully doesn't break 32-bit
  - ghc-6.6.1 and -6.6 are tested on 64-bit, 6.4.2 might fail

svn path=/nixpkgs/trunk/; revision=9132
2007-08-15 11:25:20 +00:00
Eelco Dolstra ec88afcae6 * Add some more packages to the channel.
svn path=/nixpkgs/trunk/; revision=9131
2007-08-15 10:08:01 +00:00
Eelco Dolstra 3c7826010c * Docbook XSL NS 1.73.0.
svn path=/nixpkgs/trunk/; revision=9126
2007-08-14 17:09:16 +00:00
Eelco Dolstra 6f1ad6fd79 * Function `writeScript' which is like writeText but makes its output executable.
* Latest unstable Nix.

svn path=/nixpkgs/trunk/; revision=9123
2007-08-14 16:41:41 +00:00
Andres Löh e00feaaad1 * added gv (ghostscript-with-X is a dependency)
svn path=/nixpkgs/trunk/; revision=9122
2007-08-14 14:09:58 +00:00
Eelco Dolstra 06a60d35d5 * xine-ui now needs pkgconfig.
svn path=/nixpkgs/trunk/; revision=9119
2007-08-14 12:58:09 +00:00
Eelco Dolstra fbfed1e2d8 * xine-lib 1.1.7, xine-ui 0.99.5.
svn path=/nixpkgs/trunk/; revision=9118
2007-08-14 12:10:11 +00:00
Eelco Dolstra 5ede228a68 * Thunderbird 2.0.0.6.
svn path=/nixpkgs/trunk/; revision=9115
2007-08-14 10:15:49 +00:00
Andres Löh 86874956a5 * be more fault tolerant in the unison wrapper
svn path=/nixpkgs/trunk/; revision=9114
2007-08-13 17:08:14 +00:00
Michael Raskin aae4a8db7a Added Free Pascal Compiler.
svn path=/nixpkgs/trunk/; revision=9102
2007-08-11 20:55:40 +00:00
Michael Raskin 118e9d6ebf Corrected a flaw that made automated package silently accept any extra arguments
svn path=/nixpkgs/trunk/; revision=9101
2007-08-11 11:14:36 +00:00
Michael Raskin efbabdb598 Converted Vim package to a template-based form with only lists filled in manually. Added library functions to support it. Added two proposed package templates to top-level, so that every discussion about package format can result in just editing templates or adding new ones.
svn path=/nixpkgs/trunk/; revision=9100
2007-08-11 10:34:07 +00:00
Michael Raskin 2d6a65b666 Included some configuration for Vim.
svn path=/nixpkgs/trunk/; revision=9099
2007-08-10 19:53:30 +00:00
Michael Raskin 4d137ad014 Added xmacro; updated clisp - well, it compiles now...
svn path=/nixpkgs/trunk/; revision=9098
2007-08-10 18:54:44 +00:00
Andres Löh 3d519c2bed * add unison
- unison uses a wrapper script to add font-schumacher-misc to the local X font path
    if the font isn't already present; this is necessary for it to work, but not terribly
    nice ...
* lablgtk is a dependency of unison
  - handling of library dirs with ocaml is a hack so far; in principle, ocaml needs
    a general setup for library dirs like ghc

svn path=/nixpkgs/trunk/; revision=9094
2007-08-10 08:21:31 +00:00
Armijn Hemel eb6d79c872 add PythonMagic
svn path=/nixpkgs/trunk/; revision=9086
2007-08-09 19:58:39 +00:00
Armijn Hemel 4cdef6e368 add python 2.5 to all-packages.nix
svn path=/nixpkgs/trunk/; revision=9085
2007-08-09 19:31:05 +00:00
Michael Raskin 822a3e4ead Added ThePenguinMachine. Build technically broken (but dumps compile dir to /tmp, and it runs from there.. I want to fix it first), and it crashes in a very strage way.
svn path=/nixpkgs/trunk/; revision=9084
2007-08-09 18:11:57 +00:00
Eelco Dolstra 23afbccd88 * Add ktorrent to the channel.
svn path=/nixpkgs/trunk/; revision=9083
2007-08-09 18:03:58 +00:00
Michael Raskin 422433d1b9 Added pygame and some of its dependencies. Also added Python Imaging library.
svn path=/nixpkgs/trunk/; revision=9082
2007-08-09 17:33:18 +00:00
Eelco Dolstra 254b6fe6d3 * Added ktorrent. To use, add your ~/.nix-profile to the KDEDIRS
environment variable and rerun kbuildsycoca.  (Otherwise ktorrent
  will work, but it won't be able to find its plugins.)

svn path=/nixpkgs/trunk/; revision=9081
2007-08-09 16:55:14 +00:00
Michael Raskin a00cf21e28 Added broken wine expression. Builds, segfaults.
svn path=/nixpkgs/trunk/; revision=9080
2007-08-09 16:39:04 +00:00
Eelco Dolstra e9aa891e4a * Pan 0.132.
svn path=/nixpkgs/trunk/; revision=9079
2007-08-09 13:38:19 +00:00
Armijn Hemel fcd736f20b add PythonMagick 0.7
svn path=/nixpkgs/trunk/; revision=9078
2007-08-09 01:11:51 +00:00
Armijn Hemel f87c4ec7f4 add Python 2.5.1
svn path=/nixpkgs/trunk/; revision=9077
2007-08-09 00:35:23 +00:00
Armijn Hemel 9ca1e31d3e 6.3.5-0 -> 6.3.5-5
svn path=/nixpkgs/trunk/; revision=9076
2007-08-09 00:14:14 +00:00
Eelco Dolstra 3c7950278d * Fix URL.
svn path=/nixpkgs/trunk/; revision=9075
2007-08-09 00:06:51 +00:00
Armijn Hemel dafec33ae9 for some reason the GNU version had some changes, without a version bump. Grmbl.
svn path=/nixpkgs/trunk/; revision=9074
2007-08-08 23:51:33 +00:00
Eelco Dolstra 081b456a17 * Revert to a version that works.
svn path=/nixpkgs/trunk/; revision=9073
2007-08-08 22:34:50 +00:00
Michael Raskin 4d54140043 Various.. Added ircd-hybrid. Added USB support in SANE. Added Xsane. Added gt68xx firmware support.
svn path=/nixpkgs/trunk/; revision=9070
2007-08-08 20:33:36 +00:00
Andres Löh 681551d96c * add mercurial
svn path=/nixpkgs/trunk/; revision=9069
2007-08-08 13:36:58 +00:00
Yury G. Kudryashov 33f6eb6b03 Some upgrades needed for kde4:
* alsa-lib: 1.0.12 -> 1.0.14
* alsa-utils: 1.0.13 -> 1.0.14
* strigi: 0.5.1 -> 0.5.3dev
* libgpg-error: 1.0 -> 1.4
* gpgme: 1.0.3 -> 1.1.4
* cmake: 2.4.6 -> 2.4.7

* Some kde4 components added (not compilable yet).
* icu4c-3.6 added
* boost: added unicode support to RegEx, switched to "system" layout

svn path=/nixpkgs/trunk/; revision=9068
2007-08-08 13:20:18 +00:00
Andres Löh 6710a5e02f * make ghcboot work on 64-bit
svn path=/nixpkgs/trunk/; revision=9067
2007-08-07 23:59:08 +00:00
Eelco Dolstra db0e9e16c9 * Use a patched ATerm library that fixes another GC bug.
svn path=/nixpkgs/trunk/; revision=9065
2007-08-07 23:27:38 +00:00
Andres Löh 7f30b40e65 * add ssmtp
still rather rough around the edges:
  - example config files are installed to $out/etc/ssmtp
  - the binary expects config files in /etc/ssmtp
  - it's the user's responsibility to add the global config files

svn path=/nixpkgs/trunk/; revision=9064
2007-08-07 22:22:31 +00:00
Eelco Dolstra 61656532dd * GCC 4.0.4.
svn path=/nixpkgs/trunk/; revision=9062
2007-08-07 12:05:10 +00:00
Eelco Dolstra b2bff981f3 * ifplugd: program for monitoring the link status of
ethernet interfaces.
* libdaemon: dependency of ifplugd.

svn path=/nixpkgs/trunk/; revision=9061
2007-08-06 18:45:53 +00:00
Eelco Dolstra 4f12e0c849 * Assert that we're on Linux.
svn path=/nixpkgs/trunk/; revision=9060
2007-08-06 16:08:29 +00:00
Andres Löh 81c79d71b2 * mutt was incorrectly listed under tools, not applications
svn path=/nixpkgs/trunk/; revision=9058
2007-08-06 15:09:38 +00:00
Andres Löh e539c80d47 * add SSL and IMAP support to mutt
svn path=/nixpkgs/trunk/; revision=9056
2007-08-06 12:18:55 +00:00
Andres Löh d83c6455d6 * add irssi to build-for-release
svn path=/nixpkgs/trunk/; revision=9054
2007-08-05 18:25:50 +00:00
Andres Löh 99d2eed9b5 * add irssi and mutt to all-packages
svn path=/nixpkgs/trunk/; revision=9053
2007-08-05 18:24:36 +00:00
Andres Löh d1f24e346f * added mutt (almost unusable so far, since no extra stuff is compiled in)
svn path=/nixpkgs/trunk/; revision=9052
2007-08-05 18:23:53 +00:00
Andres Löh 2527df90cd * added irssi
svn path=/nixpkgs/trunk/; revision=9051
2007-08-05 18:22:12 +00:00
Andres Löh b90010367e * update sudo version
svn path=/nixpkgs/trunk/; revision=9050
2007-08-05 18:21:28 +00:00