Jason "Don" O'Conal
e7659105cf
rubyLibs.formatador: add expression
2013-11-27 23:17:52 +01:00
Jason "Don" O'Conal
18013d4a76
rubyLibs.fast_steamer: add expression
2013-11-27 23:17:52 +01:00
Jason "Don" O'Conal
49213d5b4c
rubyLibs.excon: add expression
2013-11-27 23:17:52 +01:00
Jason "Don" O'Conal
55e698467f
rubyLibs.colorator: add expression
2013-11-27 23:17:52 +01:00
Jason "Don" O'Conal
a54e4d3966
rubyLibs.coderay: add expression
2013-11-27 23:17:51 +01:00
Jason "Don" O'Conal
72214690f4
rubyLibs.celluloid: add expression
2013-11-27 23:17:51 +01:00
Rommel M. Martinez
794afb0c78
Update xonotic to 0.7.
...
Add scheme48 1.9.
2013-11-21 09:41:01 +01:00
Shea Levy
06fe4d9904
Partial revert of b09f8110dbcb8bc8a1fcdb3e9a5dddb0956aba96
...
Didn't mean to commit this change
Signed-off-by: Shea Levy <shea@shealevy.com>
2013-11-19 09:04:32 -05:00
Shea Levy
b09f8110db
nspr: Bump to 4.10.2
...
Signed-off-by: Shea Levy <shea@shealevy.com>
2013-11-18 15:23:30 -05:00
Kim Simmons
49bf246491
Minifix: didn't use the name variable in the package.
2013-11-15 17:41:33 +01:00
Kim Simmons
a8e3167228
LuaJIT: New package
...
Just-in-time compiler for lua 5.1 with strong focus on performance.
Uses the same API as lua 5.1 which makes it extremely easy to integrate.
2013-11-15 17:20:29 +01:00
Domen Kožar
38185f8e51
pypy: 2.1 -> 2.2
2013-11-14 16:22:04 +01:00
Eelco Dolstra
847544d895
php: Update to 5.4.21
2013-11-13 17:33:58 +01:00
Moritz Ulrich
96552b683e
Erlang: Update to R16B02.
...
Signed-off-by: Moritz Ulrich <moritz@tarn-vedra.de>
2013-11-12 20:06:46 +01:00
Vladimír Čunát
619a1f5614
changes proposed for 13-10 update
...
One feature change: polkit update 8d14c7ba
2013-11-09 18:41:42 +01:00
Jason "Don" O'Conal
62ebdd7a6a
rubyLibs.resque_web: add expression
2013-11-09 17:44:28 +01:00
Vladimír Čunát
8d14c7baa6
polkit: major update 0.105 -> 0.112
...
- It now uses JavaScript for configuration (only),
so I had to "convert" config for NetworkManager.
- I tested suspend/restart/(un)mount on KDE/Xfce,
Phreedom tested NetworkManager config conversion.
2013-11-09 16:29:18 +01:00
Peter Simons
29588edfe1
python-wrapper: split 'extraLibs' into 'stdLibs' and 'extraLibs', and add 'postBuild' step
...
The default setting for extraLibs used to be the set of modules that come with
python by default but aren't usually enabled in our standard python derivation
because they require additional libraries. This meant that users who want to
*add* libraries to that set had to use a fairly complicated override, to add
more entries without loosing the ones set by default.
After this patch, the "standard libraries" such as "curses' are listed in
stdLibs while the extraLibs argument remains empty by default. This allows
users to override extraLibs without overriding the standard libraries.
Furthermore, the wrapper environment can be messed around with in an
additional 'postBuild' step. One nice application of this build step is
to patch scripts and binaries to use the wrapped python interpreter
instead of the pristine one, thereby enabling them to pick up all
modules that have been configured. The following example shows how this
is done for the 'pylint' utility:
pkgs.python27Full.override {
extraLibs = [pkgs.pylint];
postBuild = ''
cd ${pkgs.pylint}/bin
for i in *; do
rm $out/bin/$i
sed -r -e "s|^exec |exec $out/bin/python -- |" <$i >$out/bin/$i
chmod +x $out/bin/$i
done;
'';
};
2013-11-07 15:13:02 +01:00
Peter Simons
46419ae454
python-wrapper: recursively include all dependencies of the specified 'extraLibs' in the generated environment
...
This patch means that adding 'matplotlib' to extraLibs will automatically
include 'numpy', too, because matplotlib depends on it.
2013-11-07 14:00:08 +01:00
Vladimír Čunát
0eeee298ef
perl: avoid --no-cpp-precomp on darwin, ( close #1160 )
...
Taken from https://trac.macports.org/ticket/38913
vcunat renamed the patch
Conflicts (trivial):
pkgs/development/interpreters/perl/5.16/default.nix
2013-11-07 10:39:28 +01:00
Vladimír Čunát
b035c33fe8
perl: avoid --no-cpp-precomp on darwin, ( close #1160 )
...
Taken from https://trac.macports.org/ticket/38913
vcunat renamed the patch
2013-11-02 11:53:04 +01:00
Mathijs Kwik
609f8dc04b
Merge branch 'master' into stdenv-updates
...
Conflicts:
pkgs/top-level/all-packages.nix
2013-11-01 08:31:54 +01:00
Mathijs Kwik
db83d9a35b
Merge branch 'master' into multiple-outputs
2013-11-01 08:29:09 +01:00
Domen Kožar
ebcdbbbdd2
Merge pull request #1132 from lovek323/php54-pcntl
...
php54: add pcntl option
2013-10-31 07:29:38 -07:00
Jason "Don" O'Conal
f79ae71748
php54: add pcntl option
2013-10-27 23:57:44 +00:00
Jason "Don" O'Conal
ab18b33f3e
sup: update to latest version
2013-10-27 21:57:09 +01:00
Peter Simons
6be8ad3392
Merge branch 'origin/master' into stdenv-updates.
...
There was a minor conflict in 'stumpwm'. The package needs texinfo
version 4.x. At least is used to, I'm not sure whether it still does.
2013-10-18 18:57:24 +02:00
Michael Raskin
ebdec6418d
Reflect addition of curses_panel python module
2013-10-18 12:54:49 +04:00
Michael Raskin
fb2cb7bc0f
Adding Glances system monitoring tool
2013-10-18 11:11:47 +04:00
Eelco Dolstra
bb67be7739
php: Update to 5.4.20
2013-10-17 13:21:14 +02:00
Michael Raskin
dbc9d7f862
Add full linking-set to clisp 2.49
2013-10-13 10:34:22 +04:00
Karn Kallio
32ebe90fa1
pure: fix build with llvm 3.3
2013-10-09 21:23:37 +02:00
Bjørn Forsman
083d0890f5
More description fixes
...
* Remove package name
* Start with upper case letter
* Remove trailing period
Also reword some descriptions and move some long descriptions to
longDescription.
I'm not touching generated packages.
2013-10-06 12:01:38 +02:00
Bjørn Forsman
28ac782583
Some description fixes
...
There are many more packages to fix, this is just a start.
Rules:
* Don't repeat the package name (not always that easy...)
* Start with capital letter
* Don't end with full stop
* Don't start with "The ..." or "A ..."
I've also added descriptions to some packages and rewritten others.
2013-10-05 19:36:23 +02:00
Shea Levy
f6e835a2c3
Fix pythonWrapper when all of the binaries come from python
...
See discussion in #834
Signed-off-by: Shea Levy <shea@shealevy.com>
2013-10-03 15:25:43 -04:00
Peter Simons
bee1d0716a
Merge pull request #834 from peti/new-python-wrapper
...
Re-implement python-wrapper with buildEnv.
2013-10-03 09:07:09 -07:00
Peter Simons
9c6e0e584c
lua-5.1: fix $prefix in installed pkgconfig file
2013-10-03 17:09:02 +02:00
Peter Simons
742d6597ca
Re-implement python-wrapper with buildEnv.
...
The new wrapper creates an environment that contains all files from
Python and the extra libraries that have been specified. All files are
found at run-time by means of the $PYTHONHOME variable; the wrapper no
longer uses $PYTHONPATH.
2013-10-02 22:47:19 +02:00
Peter Simons
ac5d5297dd
Merge remote-tracking branch 'origin/master' into stdenv-updates.
2013-10-02 22:44:12 +02:00
Moritz Ulrich
36fca94805
Fix some issues in my packages reported by nixpkgs-lint.
...
Signed-off-by: Moritz Ulrich <moritz@tarn-vedra.de>
2013-09-26 20:03:57 +00:00
Bjørn Forsman
4585253027
Add cucumber ruby gem
...
Homepage: http://cukes.info/
Generated with "gem nix", but I removed changes to unrelated gems.
2013-09-25 15:25:31 +02:00
Peter Simons
8e3df6a494
lua: fix issue #1009
2013-09-25 12:29:56 +02:00
Peter Simons
9407832de4
Merge remote-tracking branch 'origin/master' into stdenv-updates.
...
Conflicts:
pkgs/development/libraries/gettext/default.nix
2013-09-23 10:59:44 +02:00
Peter Simons
b13188dff0
lua-5.2: install missing liblua.so.5.2.2 binary
2013-09-17 11:45:55 +02:00
Peter Simons
ad8a921f15
lua-5.1: install missing liblua.so.5.1.5 binary
2013-09-17 11:33:57 +02:00
Peter Simons
9c45b91002
lua-5: update default version from 5.1.4 to 5.1.5 and add version 5.2.2
2013-09-16 11:50:20 +02:00
Mathijs Kwik
1a55c4b89f
Merge remote-tracking branch 'official/master' into multiple-outputs
...
Conflicts:
pkgs/development/libraries/cairo/default.nix
pkgs/development/libraries/freetype/default.nix
pkgs/development/libraries/glib/default.nix
pkgs/development/libraries/libpng/default.nix
pkgs/development/libraries/pango/default.nix
pkgs/tools/typesetting/tex/texlive/default.nix
pkgs/top-level/all-packages.nix
2013-09-11 10:53:31 +02:00
Peter Simons
3d2caf1180
Merge remote-tracking branch 'origin/master' into stdenv-updates.
2013-09-08 22:54:35 +02:00
Shea Levy
aed1cd3c17
Add patch to fix GET Bucket requests to fake-s3
...
See https://github.com/jubos/fake-s3/pull/37
Signed-off-by: Shea Levy <shea@shealevy.com>
2013-09-04 16:42:20 -04:00
Aristid Breitkreuz
07e2763f00
add travis ruby gem
2013-08-31 18:39:58 +02:00