Lluís Batlle i Rossell
dae3eb2383
Merging from trunk.
...
I resolved two conflicts:
- cmake (trunk fixes + stdenv-updates cross-compiling)
- all-packages (trunk gcc-wrapper2 + stdenv-updates gcc44)
svn path=/nixpkgs/branches/stdenv-updates/; revision=18912
2009-12-12 18:39:09 +00:00
Ludovic Courtès
f63059dd05
Add Coccinelle, a semantic patch interpreter for C.
...
svn path=/nixpkgs/trunk/; revision=18909
2009-12-12 00:47:14 +00:00
Lluís Batlle i Rossell
9976583c97
As agreed with ludo, I remove the getConfig around the cscope expression,
...
which deals only with a build time dependency. Let's better have hydra
build cscope (I set me as a maintainer), and prefer simpler expressions
to options on build-time dependencies.
svn path=/nixpkgs/trunk/; revision=18902
2009-12-11 14:47:16 +00:00
Lluís Batlle i Rossell
2ccf2984eb
Updating cscope, and making its dependency on emacs optional (and off by default),
...
due to something called 'install emacs mode'.
svn path=/nixpkgs/trunk/; revision=18901
2009-12-11 14:03:27 +00:00
Marc Weber
5319704f80
removing old bleeding edge cruft replacing it by a niftier version using
...
source regions which are substituded by the tool nix-repository-manager.
See http://github.com/MarcWeber/nix-repository-manager/raw/master/README .
sourceByName is called sourceFromHead now.
updates: MPlayerTrunk, haxe, neko, netsurf, cinelerra, ctags
cinelerra does no longer build due to Xorg update
svn path=/nixpkgs/trunk/; revision=18894
2009-12-11 13:58:23 +00:00
Lluís Batlle i Rossell
2dd9764a9e
Major update to cmake, from 2.6.4 to 2.8.0.
...
I tried some kde4 builds, and the worked.
svn path=/nixpkgs/trunk/; revision=18890
2009-12-11 07:58:54 +00:00
Lluís Batlle i Rossell
f3c23487a2
Adding a new version of the gcc-wrapper, named gcc-wrapper2, in order not to rebuild
...
stdenv.
In this gcc-wrapper2 I made the ld-wrapper.sh to handle the linking with shared
objects through direct pass as ld command arguments of the absolute path to shared
objects, instead of using the -L/-l combinations.
cmake 'FindXXX.cmake' modules make a strong usage of the dynamic linking directly
passing the absolute path to the shared object to the linker, and as our wrapper did
not add any -rpath for those, writting the nix expressions for some cmake packages
resulted in a lot of tricks, compared to using this gcc-wrapper2.
This gcc-wrapper2/ld-wrapper.sh should become the gcc-wrapper/ld-wrapper in a
stdenv update.
I also updated some cmake expressions to use this gcc-wrapper2, and reduced its
tricks.
I also updated the cmake setup-hook for it to make cmake not touch any rpath decided
at build time, when running the 'make install' of makefiles created by cmake.
svn path=/nixpkgs/trunk/; revision=18885
2009-12-10 22:19:52 +00:00
Ludovic Courtès
3b6cc2a5c2
Update Automake (CVE-2009-4029 security fix).
...
svn path=/nixpkgs/trunk/; revision=18881
2009-12-10 20:54:58 +00:00
Lluís Batlle i Rossell
89fe676bb3
Updating from trunk.
...
svn path=/nixpkgs/branches/stdenv-updates/; revision=18878
2009-12-10 14:48:45 +00:00
Eelco Dolstra
d869913b27
* RPM updated to 4.7.2.
...
* nspr updated to 4.8.2.
* nss updated to 3.12.4.
* elfutils updated to 0.143.
svn path=/nixpkgs/trunk/; revision=18867
2009-12-09 22:34:51 +00:00
Lluís Batlle i Rossell
21b2bc74b2
The bison elf may call m4 (I saw that building binutils' gold).
...
svn path=/nixpkgs/branches/stdenv-updates/; revision=18845
2009-12-08 19:42:18 +00:00
Lluís Batlle i Rossell
e1082c8ac6
Updating openocd from 0.2.0 to 0.3.1
...
svn path=/nixpkgs/trunk/; revision=18843
2009-12-08 19:31:04 +00:00
Ludovic Courtès
c73d5761de
binutils: Fix `as' patch.
...
svn path=/nixpkgs/branches/stdenv-updates/; revision=18816
2009-12-05 15:02:10 +00:00
Ludovic Courtès
9cb2e0aed7
binutils: Apply GNU assembler bug fix.
...
svn path=/nixpkgs/branches/stdenv-updates/; revision=18815
2009-12-05 14:28:17 +00:00
Lluís Batlle i Rossell
6c0b8d954a
Adding gdbCross, to have a gdb for other targets than native.
...
svn path=/nixpkgs/branches/stdenv-updates/; revision=18772
2009-12-02 20:54:40 +00:00
Lluís Batlle i Rossell
a3403e6828
Finishing the update from trunk, having resolved the eclipse related directory
...
renaming.
I think directory renaming breaks the usual merges... because it leaves the
'to be removed' directory in the working directory still. A manual 'rm' of the
'to be removed' directory fixed the commit.
svn merge ^/nixpkgs/trunk
svn path=/nixpkgs/branches/stdenv-updates/; revision=18661
2009-11-26 21:46:08 +00:00
Lluís Batlle i Rossell
adc61253b9
Merging from trunk, partially, to get rid of the annoying failing commits from
...
svn when files were removed, recreated and whatever...
svn merge -r 18479:18485 ^/nixpkgs/trunk
svn path=/nixpkgs/branches/stdenv-updates/; revision=18659
2009-11-26 21:34:53 +00:00
Ludovic Courtès
f1f286052e
Remove `unpackCmd's not needed with GNU tar format auto-detection (r18492).
...
svn path=/nixpkgs/branches/stdenv-updates/; revision=18653
2009-11-26 15:50:26 +00:00
Lluís Batlle i Rossell
585ba8c27f
Big fixes in the cross build:
...
- Before this changes, cflags and ldflags for the native and the cross compiler
got mixed. Not all the gcc-wrapper/gcc-cross-wrapper variables are
independant now, but enough, I think.
- Fixed the generic stdenv expression, which did a big mess on buildInputs and
buildNativeInputs. Now it distinguishes when there is a stdenvCross or not.
Maybe we should have a single stdenv and forget about the stdenvCross
adapter - this could end in a stdenv a bit complex, but simpler than the
generic stdenv + adapter.
- Added basic support in pkgconfig for cross-builds: a single PKG_CONFIG_PATH
now works for both the cross and the native compilers, but I think this
should work well for most cases I can think of.
- I tried to fix the guile expression to cross-biuld; guile is built, but not
its manual, so the derivation still fails. Guile requires patching to
cross-build, as far as I understnad.
- Made the glibcCross build to be done through the usage of a
gcc-cross-wrapper over the gcc-cross-stage-static, instead of using it
directly.
- Trying to make physfs (a neverball dependency) cross build.
- Updated the gcc expression to support building a cross compiler without getting
derivation variables mixed with those of the stdenvCross.
svn path=/nixpkgs/branches/stdenv-updates/; revision=18534
2009-11-22 19:51:45 +00:00
Ludovic Courtès
0d041d909b
GNU Autoconf 2.65.
...
svn path=/nixpkgs/trunk/; revision=18511
2009-11-21 23:18:23 +00:00
Lluís Batlle i Rossell
a5fee3325a
Fixing some things on the gcc-cross-wrapper (libc was not properly added to the
...
linking path), and with this achieved bash being cross-compilable.
I fixed the few expressions involved in bash building, so they have well stated
native and non-native inputs.
I also tried to cross-build guile, and with this I found a problem in the
actual cross-gcc: it calls the binutils ld, instead of the ld wrapper. This
way, the programs/shared_libraries don't get the proper -rpath.
svn path=/nixpkgs/branches/stdenv-updates/; revision=18497
2009-11-20 22:56:58 +00:00
Ludovic Courtès
be4dfd41be
GNU Libtool: Disable tests for now.
...
svn path=/nixpkgs/branches/stdenv-updates/; revision=18491
2009-11-20 17:09:54 +00:00
Eelco Dolstra
973b9cfde6
* Remove some incorrect uses of makeOverridable.
...
svn path=/nixpkgs/trunk/; revision=18483
2009-11-20 12:51:14 +00:00
Ludovic Courtès
640db0323d
GNU Libtool 2.2.6b.
...
svn path=/nixpkgs/branches/stdenv-updates/; revision=18475
2009-11-19 22:46:40 +00:00
Lluís Batlle i Rossell
e85500987b
Merging from trunk. I had to do two manual merges, quite trivial I think.
...
svn path=/nixpkgs/branches/stdenv-updates/; revision=18472
2009-11-19 19:09:10 +00:00
Lluís Batlle i Rossell
7ade207f6b
- Removed all *NoCross expressions I dupilcated in nixpkgs, while maintaining
...
the cross compilation functionality.
- I renamed some expected stdenv.mkDerivation parameter attributes so we can
keep this branch properly updated from trunk. We agreed with Nicolas Pierron
doing a massive renaming, so all current buildInputs become hostInputs (input
as build for the host machine, in autotools terminology) , and
then buildInputs would mean "input as for the build machine".
By now, the specific "input as for the build machine" is specified through
buildNativeInputs. We should fix this in the merge to trunk.
- I made the generic stdenv understand the buildNativeInputs, otherwise if
we start changing nixpkgs expressions so they distinguish the current
buildInputs into buildInputs and buildNativeInputs, we could break even more
nixpkgs for other platforms.
- I changed the default result of mkDerivation so it becomes the derivation for
to be run in the build machine. This allows, without any special rewriting,
"fetchurl" derivations to be always results for the build machine to use
them.
- The change above implies that, for anyone wanting to cross-compile, has to
build the hostDrv of the wanted derivation. For example, after this commit,
the usual test of "nix-build -A bison.hostDrv arm.nix" works. I described
the contents of this arm.nix in r18398.
svn path=/nixpkgs/branches/stdenv-updates/; revision=18471
2009-11-19 19:03:34 +00:00
Eelco Dolstra
7f5b839524
* Removed selectVersion. There's no good reason to write
...
`selectVersion ./foo "bar"' instead of `import ./foo/bar.nix'.
* Replaced `with args' with formal function arguments in several
packages.
* Renamed several files to `default.nix'. As a general rule, version
numbers should only be included in the filename when there is a
reason to keep multiple versions of a package in Nixpkgs.
Otherwise, it just makes it harder to update the package.
svn path=/nixpkgs/trunk/; revision=18403
2009-11-18 09:39:59 +00:00
Lluís Batlle i Rossell
2c7fa189fb
Making the definition of the cross compiling target an attribute set.
...
svn path=/nixpkgs/branches/stdenv-updates/; revision=18378
2009-11-16 23:21:13 +00:00
Lluís Batlle i Rossell
2aba922d30
My first attempt at getting cross compilers in nixpkgs.
...
My idea is to provide special stdenv expressions that will contain in the path
additional cross compilers. As most expressions for programs accept a stdenv parameter,
we could substitute this parameter with the special stdenv, which will have a
generic builder that attempts the usual "--target=..." and can additionally
have an env variable like "cross" with the target architecture set.
So, finally we could have additional expressions like this:
bashRealArm = makeOverridable (import ../shells/bash) {
inherit fetchurl bison;
stdenv = stdenvCross "armv5tel-unknown-linux-gnueabi";
};
Meanwhile it does not work - I still cannot get the cross-gcc to build.
I think it does not fill the previous expressions with a lot of noise, so I
think it may be a good path to follow.
I only touched some files of the current stdenv: gcc-4.3, kernel headers
2.6.28, glibc 2.9, ...
I tried to use the gcc-cross-wrapper, that may be very outdated. Maybe I will
update it, or update the gcc-wrapper expression to make it fit the cross tools,
but meanwhile I even cannot build gcc, so I have not tested the wrapper.
This new idea on cross compiling is not similar to that of the
nixpkgs/branches/cross-compilation, which mostly added bare new expressions for
anything to be cross compiled, if I understood it correctly.
I cared not to break anything of the usual stdenv in all this work.
svn path=/nixpkgs/branches/stdenv-updates/; revision=18343
2009-11-14 08:11:30 +00:00
Lluís Batlle i Rossell
4b27d28701
Porting changes from stdenv-updates into this branch.
...
This comes from:
svn diff ^/nixpkgs/trunk/@18255 ^/nixpkgs/branches/stdenv-updates/ > diff
patch -p0 < diff
and then adding into svn all files new from the patch.
trunk@18255 comes from the last time I updated stdenv-updates from trunk.
svn path=/nixpkgs/stdenv-updates2/; revision=18272
2009-11-08 00:32:12 +00:00
Eelco Dolstra
4f839e9a54
* Sync with the trunk.
...
svn path=/nixpkgs/branches/xorg-7.5/; revision=18122
2009-11-04 22:37:24 +00:00
Eelco Dolstra
ac4d183051
* Added gnome-icon-theme.
...
svn path=/nixpkgs/branches/xorg-7.5/; revision=18118
2009-11-04 21:44:01 +00:00
Lluís Batlle i Rossell
ae1f064c0c
Updating doxygen from 1.5.8 to 1.6.1
...
svn path=/nixpkgs/trunk/; revision=18099
2009-11-04 14:58:39 +00:00
Marco Maggesi
a0207b3dc7
Updated Coq to version 8.2pl1
...
svn path=/nixpkgs/trunk/; revision=18069
2009-11-02 11:44:27 +00:00
Marco Maggesi
c4533b8d24
Added camlp5 the preprocessor-pretty-printer for OCaml
...
svn path=/nixpkgs/trunk/; revision=18068
2009-11-02 10:47:24 +00:00
Ludovic Courtès
f8d95145b2
G-Wrap 1.9.13.
...
svn path=/nixpkgs/trunk/; revision=18012
2009-10-29 11:23:10 +00:00
Ludovic Courtès
4c5fcfb0a8
GDB: Build with Expat support, to get syscall info.
...
svn path=/nixpkgs/trunk/; revision=18009
2009-10-28 22:25:50 +00:00
Eelco Dolstra
f53195f29e
* Improved a bunch of "name" attributes (mostly missing version
...
numbers).
svn path=/nixpkgs/trunk/; revision=17991
2009-10-28 14:06:56 +00:00
Eelco Dolstra
cbfbaf736a
* GNU Indent updated to 2.2.10.
...
svn path=/nixpkgs/trunk/; revision=17990
2009-10-28 13:11:09 +00:00
Peter Simons
97166d8a20
distcc 3.1: initial version
...
svn path=/nixpkgs/trunk/; revision=17893
2009-10-20 11:54:49 +00:00
Marc Weber
87a60a6afd
fix ctags wrapper js regex
...
svn path=/nixpkgs/trunk/; revision=17856
2009-10-18 04:43:35 +00:00
Ludovic Courtès
666754f7aa
GDB: Reinstate removal of duplicate Info files.
...
svn path=/nixpkgs/trunk/; revision=17750
2009-10-12 10:06:41 +00:00
Lluís Batlle i Rossell
57a544d59c
Adding 'remake': a patched and modernized version of GNU make utility that adds
...
improved error reporting, the ability to trace execution in a comprehensible
way, and a debugger.
svn path=/nixpkgs/trunk/; revision=17744
2009-10-11 15:03:13 +00:00
Michael Raskin
e131df67ee
Update GDB
...
svn path=/nixpkgs/trunk/; revision=17742
2009-10-10 14:45:38 +00:00
Ludovic Courtès
c1e5a9d2fb
G-Wrap: Propagate libffi.
...
svn path=/nixpkgs/trunk/; revision=17656
2009-10-05 22:21:45 +00:00
Eelco Dolstra
4041f93fbf
* SWIG apparently doesn't need Perl/Python/Guile/JDK/20 other
...
languages at build time. It seems they're only used in "make
check".
* Subversion: updated to 1.6.5.
svn path=/nixpkgs/trunk/; revision=17594
2009-10-02 11:49:21 +00:00
Ludovic Courtès
a5945916f0
More Apache mirrors; use them for Ant.
...
svn path=/nixpkgs/trunk/; revision=17563
2009-10-01 09:07:09 +00:00
Ludovic Courtès
403a4f9ae6
Add GNU AutoGen.
...
svn path=/nixpkgs/trunk/; revision=17491
2009-09-29 09:01:40 +00:00
Lluís Batlle i Rossell
f9035543d5
Made openocd work with ft2232 jtag chipset, that of the Sheevaplug.
...
svn path=/nixpkgs/trunk/; revision=17407
2009-09-24 21:28:27 +00:00
Ludovic Courtès
c1f7e5ff90
ant-gcj: Add missing file.
...
svn path=/nixpkgs/trunk/; revision=17402
2009-09-24 14:50:42 +00:00
Ludovic Courtès
18e946cb9d
Add Apache Ant, built from source with GCJ.
...
svn path=/nixpkgs/trunk/; revision=17401
2009-09-24 14:49:15 +00:00
Eelco Dolstra
0fe3d3a313
* Doh.
...
svn path=/nixpkgs/trunk/; revision=17373
2009-09-23 19:50:31 +00:00
Eelco Dolstra
b7a90c11d3
* selectMaintained (renamed): don't use meta.maintainer, just use
...
meta.platforms.
* Valgrind *should* work on Darwin now, except that our GCC doesn't
recognise the -arch flag.
svn path=/nixpkgs/trunk/; revision=17372
2009-09-23 19:45:02 +00:00
Eelco Dolstra
880e6ba1f7
* Valgrind 3.5.0.
...
svn path=/nixpkgs/trunk/; revision=17369
2009-09-23 18:46:07 +00:00
Ludovic Courtès
7735b54340
Keep only one SWIG, with support for all languages.
...
svn path=/nixpkgs/trunk/; revision=17351
2009-09-22 11:59:41 +00:00
Eelco Dolstra
4c759795e0
svn path=/nixpkgs/trunk/; revision=17350
2009-09-22 10:41:33 +00:00
Michael Raskin
2750e04339
Adding uzbl experimental snapshot
...
svn path=/nixpkgs/trunk/; revision=17344
2009-09-22 03:51:04 +00:00
Ludovic Courtès
7b2932cd9b
SWIG 1.3.40, with Guile support.
...
svn path=/nixpkgs/trunk/; revision=17343
2009-09-21 20:56:53 +00:00
Lluís Batlle i Rossell
3eeec96a31
Adding OpenOCD.
...
svn path=/nixpkgs/trunk/; revision=17302
2009-09-20 16:43:16 +00:00
Lluís Batlle i Rossell
8515a7fa68
Adding me as a maintainer, with a pair of packages.
...
svn path=/nixpkgs/trunk/; revision=17295
2009-09-20 09:37:55 +00:00
Lluís Batlle i Rossell
f85146e2fc
Making radare more flexible on build options.
...
svn path=/nixpkgs/trunk/; revision=17294
2009-09-20 09:33:37 +00:00
Ludovic Courtès
ebd78c51d0
GNU Cflow: Don't build on Darwin.
...
svn path=/nixpkgs/trunk/; revision=17204
2009-09-16 15:09:58 +00:00
Ludovic Courtès
90cdaa74e9
GNU Cflow: Don't depend on Emacs on Cyg/Dar.
...
svn path=/nixpkgs/trunk/; revision=17201
2009-09-16 14:53:27 +00:00
Andres Löh
5b20a89f11
Version bumps for a number of Haskell packages.
...
svn path=/nixpkgs/trunk/; revision=17107
2009-09-14 08:35:39 +00:00
Marc Weber
2f91d73018
adding texitohtml (dependency of lilypond)
...
svn path=/nixpkgs/trunk/; revision=17023
2009-09-10 16:57:42 +00:00
Eelco Dolstra
4c89d4f833
* Clean up the coverage report in the case where absolute paths are
...
used in the *.gcno files.
svn path=/nixpkgs/trunk/; revision=16925
2009-09-02 09:37:52 +00:00
Eelco Dolstra
54a5ad0c6f
* Hacked up a patch to let lcov find source files referenced by a
...
path relative to some arbitrary parent of the .gcno file. For
instance, this happens when building Subversion with coverage.
svn path=/nixpkgs/trunk/; revision=16902
2009-08-31 15:02:01 +00:00
Eelco Dolstra
024c82ee04
* lcov 1.7.
...
svn path=/nixpkgs/trunk/; revision=16888
2009-08-28 14:11:09 +00:00
Andres Löh
543483d99f
Added mkcabal.
...
svn path=/nixpkgs/trunk/; revision=16875
2009-08-27 06:35:17 +00:00
Lluís Batlle i Rossell
62a8e0806b
Radare update from 1.4.1 to 1.4.2
...
svn path=/nixpkgs/trunk/; revision=16778
2009-08-19 20:19:08 +00:00
Eelco Dolstra
714555bb81
* Added PolicyKit and eggdbus. There is a newer version of PolicyKit
...
(0.93), but it doesn't compile with the current glib.
svn path=/nixpkgs/trunk/; revision=16704
2009-08-13 07:55:11 +00:00
Andres Löh
738b44d9d2
Some Haskell package updates.
...
svn path=/nixpkgs/trunk/; revision=16702
2009-08-12 15:28:47 +00:00
Ludovic Courtès
7dd05fc776
Autoconf: Don't run the test suite on Cygwin.
...
svn path=/nixpkgs/trunk/; revision=16521
2009-07-30 15:26:30 +00:00
Ludovic Courtès
4456c7496a
Autoconf: Patch sloppy test case.
...
svn path=/nixpkgs/trunk/; revision=16511
2009-07-29 19:39:15 +00:00
Ludovic Courtès
8f6228ee5b
Autoconf: Disable the test suite on {Cyg,Dar}win.
...
svn path=/nixpkgs/trunk/; revision=16499
2009-07-29 08:38:26 +00:00
Ludovic Courtès
60027c8198
GNU Autoconf 2.64.
...
svn path=/nixpkgs/trunk/; revision=16494
2009-07-28 19:43:40 +00:00
Ludovic Courtès
43f4d29bb8
Add FastJar.
...
svn path=/nixpkgs/trunk/; revision=16469
2009-07-27 10:43:20 +00:00
Andres Löh
df8def8dfb
Added HAppS and gitit plus dependencies.
...
svn path=/nixpkgs/trunk/; revision=16419
2009-07-18 15:25:28 +00:00
Peter Simons
2ec77fdc7e
scons: don't overwrite a pre-existing PYTHONPATH in the wrapper
...
svn path=/nixpkgs/trunk/; revision=16342
2009-07-13 20:08:44 +00:00
Ludovic Courtès
9cd30e68e3
GNU Cflow 1.3.
...
svn path=/nixpkgs/trunk/; revision=16338
2009-07-13 14:54:01 +00:00
Ludovic Courtès
1bc6e5c847
GLOBAL: Install the Emacs mode.
...
svn path=/nixpkgs/trunk/; revision=16334
2009-07-13 09:21:04 +00:00
Ludovic Courtès
474c54071b
Add GNU GLOBAL, a source code tag system.
...
svn path=/nixpkgs/trunk/; revision=16333
2009-07-13 09:05:56 +00:00
Marc Weber
676f4c4e2d
haskellPackages: adding bytestring, networkBytestring, getOptions, ghcSyb, hslogger, tar
...
svn path=/nixpkgs/trunk/; revision=16296
2009-07-09 22:24:02 +00:00
Peter Simons
afa04f4576
Updated scons to version 1.2.0.
...
svn path=/nixpkgs/trunk/; revision=16111
2009-06-30 18:51:01 +00:00
Marc Weber
738858983a
ctags wrapper: find ruby classes (eg class Gem::Dependency)
...
svn path=/nixpkgs/trunk/; revision=16058
2009-06-26 16:52:52 +00:00
Eelco Dolstra
e7edaef873
* Latest patchelf.
...
svn path=/nixpkgs/trunk/; revision=16017
2009-06-22 11:14:51 +00:00
Rob Vermaas
e89d4a39c6
* added checkstyle, pmd, jdepends.
...
* changed version of ant to 1.7
svn path=/nixpkgs/trunk/; revision=15995
2009-06-18 12:52:10 +00:00
Rob Vermaas
c1c7dce5d5
* added checkstyle, pmd, jdepends.
...
* changed version of ant to 1.7
svn path=/nixpkgs/trunk/; revision=15994
2009-06-18 12:51:51 +00:00
Lluís Batlle i Rossell
4855ff6979
Updating radare.
...
svn path=/nixpkgs/trunk/; revision=15966
2009-06-15 18:37:31 +00:00
Eelco Dolstra
143787ad74
* PatchELF 0.5pre15500. Needed for --force-rpath.
...
svn path=/nixpkgs/trunk/; revision=15951
2009-06-13 16:10:24 +00:00
Lluís Batlle i Rossell
3fae4aa6b3
Updating radare to 1.4.
...
svn path=/nixpkgs/trunk/; revision=15847
2009-06-03 19:45:38 +00:00
Lluís Batlle i Rossell
94d2e57c62
Trying to fix the cmake-qt problems, fixing cmake's FindQt4. Paraview now builds beyond 25%, while
...
before it didn't. Through this commit I expect the build farm to try to build kde, and see
whether this way it builds without the unusual NIX_CFLAGS_COMPILE set in the qt setup-hook.
svn path=/nixpkgs/trunk/; revision=15838
2009-06-03 09:19:19 +00:00
Andres Löh
107d41f96c
New Haskell Platform release.
...
svn path=/nixpkgs/trunk/; revision=15837
2009-06-03 08:44:41 +00:00
Lluís Batlle i Rossell
07caf9a9bd
Updated cmake
...
svn path=/nixpkgs/trunk/; revision=15807
2009-05-31 08:34:57 +00:00
Marc Weber
f7f938a1d1
big breaking change: renaming lib.getAttr to lib.attrByPath
...
getAttr was ambiguous. It's also a builtin function
fix
svn path=/nixpkgs/trunk/; revision=15692
2009-05-24 10:57:41 +00:00
Ludovic Courtès
20701b16cc
Automake 1.11: Run the test suite by default.
...
svn path=/nixpkgs/trunk/; revision=15674
2009-05-20 12:21:53 +00:00
Ludovic Courtès
599b1c1af2
Add GNU Automake 1.11.
...
svn path=/nixpkgs/trunk/; revision=15673
2009-05-20 12:20:51 +00:00
Marc Weber
52647ea3b0
FullDepEntry -> fullDepEntry, PackEntry -> packEntry
...
svn path=/nixpkgs/trunk/; revision=15662
2009-05-19 23:25:58 +00:00
Michael Raskin
852603e4df
Fix indent build
...
svn path=/nixpkgs/trunk/; revision=15572
2009-05-12 16:00:26 +00:00
Michael Raskin
370eb21986
Update yodl sources. Unofrtunately, old ones are unavailable. Icmake is still needed to build yodl
...
svn path=/nixpkgs/trunk/; revision=15539
2009-05-10 20:16:33 +00:00
Michael Raskin
d02609f7dc
Fix includes in xxdiff
...
svn path=/nixpkgs/trunk/; revision=15521
2009-05-10 05:27:52 +00:00
Marc Weber
90344f9e1e
use svn sources for ctgas.
...
The last release has a bug. I got "no end of file expected" while tagging
svn path=/nixpkgs/trunk/; revision=15501
2009-05-07 18:28:19 +00:00
Lluís Batlle i Rossell
166f375bd2
Fixing spin's references to cpp
...
svn path=/nixpkgs/trunk/; revision=15478
2009-05-06 21:03:49 +00:00
Marc Weber
5d9d28fb1f
mend
...
svn path=/nixpkgs/trunk/; revision=15477
2009-05-06 16:06:49 +00:00
Marc Weber
3cf455286f
adding ctags-wropped. A wrapper for ctags adding some language (more)
...
language support for .php .js .nix and .as files
svn path=/nixpkgs/trunk/; revision=15476
2009-05-06 16:06:45 +00:00
Lluís Batlle i Rossell
ef25944cdb
Updating tcl/tk
...
svn path=/nixpkgs/trunk/; revision=15434
2009-05-03 14:35:56 +00:00
Lluís Batlle i Rossell
63c8ccf84c
Adding spin
...
svn path=/nixpkgs/trunk/; revision=15433
2009-05-03 14:35:43 +00:00
Lluís Batlle i Rossell
621b56e233
Radare version bump
...
svn path=/nixpkgs/trunk/; revision=15349
2009-04-28 10:31:16 +00:00
Eelco Dolstra
7689a348c4
* Got rid of a lot of "postInstall=postInstall" and similar lines in
...
builders. These are redundant now.
* Inlined some trivial builders.
* Removed a few explicit setup-hook creations. This is done
automatically now if setupHook is set.
* Deleted the initscripts package. NixOS doesn't use it anymore.
svn path=/nixpkgs/branches/stdenv-updates/; revision=15276
2009-04-23 13:31:10 +00:00
Eelco Dolstra
f762b50991
* Another sync with the trunk.
...
svn path=/nixpkgs/branches/stdenv-updates/; revision=15269
2009-04-23 11:59:43 +00:00
Eelco Dolstra
7ec61219db
* lib/site_perl -> lib/perl5/site_perl.
...
svn path=/nixpkgs/branches/stdenv-updates/; revision=15258
2009-04-22 23:04:18 +00:00
Andres Löh
e62cb1aa20
Added HLint plus dependencies.
...
svn path=/nixpkgs/trunk/; revision=15231
2009-04-21 21:48:10 +00:00
Lluís Batlle i Rossell
672890153e
Fixing lua and perl for radare.
...
svn path=/nixpkgs/trunk/; revision=15230
2009-04-21 21:31:08 +00:00
Lluís Batlle i Rossell
233cf74781
Adding radare
...
svn path=/nixpkgs/trunk/; revision=15226
2009-04-21 19:47:51 +00:00
Lluís Batlle i Rossell
ff0483b3d8
Adding gtkdialog.
...
svn path=/nixpkgs/trunk/; revision=15224
2009-04-21 19:47:30 +00:00
Eelco Dolstra
b1e2bb54f2
* Doh! This broke pam_console (and probably system-config-printer).
...
svn path=/nixpkgs/branches/stdenv-updates/; revision=15190
2009-04-20 16:01:57 +00:00
Eelco Dolstra
c61c9dc35b
* Drop the "perl" prefix from Perl attribute names. It's redundant
...
now that Perl packages are in their own namespace
(perlPackages.<pkg>).
svn path=/nixpkgs/trunk/; revision=15176
2009-04-20 12:49:35 +00:00
Andres Löh
0fc7bf4f00
Added vacuum plus deps.
...
svn path=/nixpkgs/trunk/; revision=15166
2009-04-20 00:18:51 +00:00
Andres Löh
035c84d06f
Haskell package updates.
...
svn path=/nixpkgs/trunk/; revision=15165
2009-04-19 23:25:58 +00:00
Andres Löh
e42598c74b
Added Haskell platform meta package.
...
(Doesn't quite work nicely yet.)
svn path=/nixpkgs/trunk/; revision=15163
2009-04-19 19:18:07 +00:00
Andres Löh
12a05f1638
More Haskell Platform.
...
svn path=/nixpkgs/trunk/; revision=15153
2009-04-19 13:38:34 +00:00
Andres Löh
b148543c3e
Towards Haskell Platform support.
...
svn path=/nixpkgs/trunk/; revision=15148
2009-04-19 11:44:37 +00:00
Eelco Dolstra
6b9ccbaf78
* setup.sh: turn on nullglob globally.
...
* setup.sh: removed some obsolete features, specifically some that
were only used by the old build farm.
* addToSearchPath: removed some parameters that weren't used
anywhere.
svn path=/nixpkgs/branches/stdenv-updates/; revision=15136
2009-04-18 22:22:51 +00:00
Eelco Dolstra
cee387e845
* Move the composition of Haskell packages out of all-packages.nix
...
into haskell-packages.nix, which depends on an instance of GHC.
This allows a consistent set of packages to be built with the same
GHC. For instance,
$ nix-build -A haskellPackages_ghc683.xmonad
builds xmonad and all its dependencies with GHC 6.8.3, while
$ nix-build -A haskellPackages_ghc6102.xmonad
does the same with GHC 6.10.2. This is the same technique used with
kernelPackages. It also means that we don't need things like
"cabal682" and "cabal683" anymore.
* The setup hook is now in a separate wrapper package so that we don't
have to recompile all of GHC every time we want to make a small
change.
* cinelerra: this package appears to have an accidental dependency on
the "X11" Haskell package.
svn path=/nixpkgs/trunk/; revision=15125
2009-04-18 12:47:11 +00:00
Peter Simons
047f6d20d5
Updated CMake to version 2.6.3.
...
svn path=/nixpkgs/trunk/; revision=15114
2009-04-17 13:48:22 +00:00
Peter Simons
2796d3a185
Updated fixCmakeFiles to handle file paths that contain whitespace.
...
svn path=/nixpkgs/trunk/; revision=15113
2009-04-17 13:48:11 +00:00
Eelco Dolstra
a4c304ef84
* Sync with the trunk.
...
svn path=/nixpkgs/branches/stdenv-updates/; revision=15065
2009-04-15 13:25:01 +00:00
Marc Weber
5951e31121
updating unifdef source location
...
Why did the hash change as well?
svn path=/nixpkgs/trunk/; revision=15029
2009-04-14 13:03:43 +00:00
Marc Weber
6d538fc6aa
downgrade selenium-rc to rev 2450. The newer one is buggy (Neither allows using a FirefoxProfile nor launches Opera)
...
svn path=/nixpkgs/trunk/; revision=15027
2009-04-14 12:58:53 +00:00
Michael Raskin
3d5d738895
Added Gajim XMPP client in nearly full-feature configuration with all dependencies
...
svn path=/nixpkgs/trunk/; revision=15001
2009-04-12 19:34:20 +00:00
Eelco Dolstra
2eb05cf933
* Sync with the trunk.
...
svn path=/nixpkgs/branches/stdenv-updates/; revision=14965
2009-04-09 12:19:57 +00:00
Lluís Batlle i Rossell
8ddd79ca2e
Making cdecl compile with readline.
...
svn path=/nixpkgs/trunk/; revision=14941
2009-04-08 10:09:14 +00:00
Armijn Hemel
349fea53b7
update to 1.3.39
...
svn path=/nixpkgs/trunk/; revision=14890
2009-04-05 19:47:23 +00:00
Eelco Dolstra
e01be47e53
* aclocal wrapper: skip directories in ACLOCAL_PATH that don't exist,
...
otherwise aclocal barfs. Updated the builder to use makeWrapper
* Made Automake 1.10 the default.
* Fixed `make check' in Automake by turning off indented logging in
Make (there is a flag for that now).
* Disabled the `make check' in Automake by default because it takes a
REALLY long time (e.g. more than 2 hours on Cygwin, 50 minutes on
Darwin, 25 minutes on Linux) which is a lot for a package that
otherwise takes 10 seconds to build. We can add a Hydra job with
doCheck enabled to do regression testing.
* make-wrapper: allow --run commands to add additional flags to the
invocation of the wrapped program. An example is the aclocal
wrapper: it adds additional -I ... flags.
* make-wrapper: call the wrapped program .foo-wrapped instead of
.wrapped-foo to make it easier to tell programs apart in `ps'
output.
svn path=/nixpkgs/branches/stdenv-updates/; revision=14885
2009-04-05 18:13:59 +00:00
Ludovic Courtès
4b663632ed
GNU M4 1.4.13.
...
svn path=/nixpkgs/branches/stdenv-updates/; revision=14834
2009-04-02 12:33:27 +00:00
Eelco Dolstra
d27514cb28
* Sync with the trunk once more.
...
* Turn on everything in Hydra.
svn path=/nixpkgs/branches/stdenv-updates/; revision=14806
2009-03-31 15:30:47 +00:00
Lluís Batlle i Rossell
9fde2b1a38
Binutils got in 2.18 GPLv3
...
svn path=/nixpkgs/trunk/; revision=14796
2009-03-30 22:13:42 +00:00
Lluís Batlle i Rossell
762d184399
Made oprofile not to build shared libs. This allows building on x86_64.
...
svn path=/nixpkgs/trunk/; revision=14795
2009-03-30 20:22:54 +00:00
Eelco Dolstra
9455f37ce9
* acl, attr: updated, and use libtool 2.
...
* Removed libtoolOld.
svn path=/nixpkgs/branches/stdenv-updates/; revision=14792
2009-03-30 15:55:10 +00:00
Marc Weber
93f9b0f45e
updating selenium to SNAPSHOT version
...
to run firefox from selenium remote control you either have to use the
binary, write a binary wrapper or use latest version (which is what I've
done now)
svn path=/nixpkgs/trunk/; revision=14786
2009-03-30 14:51:30 +00:00
Marc Weber
63dbfc3aa1
selenium remote control version bump to 1.0-beta-2
...
renamed attr to seleniumRCBin and adding
selenium-remote-control-1.0-beta-2 run script
svn path=/nixpkgs/trunk/; revision=14734
2009-03-27 09:39:19 +00:00
Lluís Batlle i Rossell
6b8acbd2dc
Fixing the name of xxdiff.
...
svn path=/nixpkgs/trunk/; revision=14692
2009-03-24 19:24:14 +00:00
Eelco Dolstra
d8e436c742
* Sync with the trunk.
...
svn path=/nixpkgs/branches/stdenv-updates/; revision=14634
2009-03-20 16:49:02 +00:00
Eelco Dolstra
5986a4d175
* More cleanup. Updated to the latest Stratego/XT 0.17.
...
svn path=/nixpkgs/trunk/; revision=14610
2009-03-19 14:34:16 +00:00
Peter Simons
22e1286711
Updated ANTLR version 2 from 2.7.6 to 2.7.7.
...
svn path=/nixpkgs/trunk/; revision=14576
2009-03-17 15:42:54 +00:00
Eelco Dolstra
3593b97d63
* Sync with the trunk.
...
svn path=/nixpkgs/branches/stdenv-updates/; revision=14557
2009-03-16 12:45:27 +00:00
Peter Simons
610aac30c3
Fixed Python StringTemplate library.
...
Most importantly, this change required updating the ANTLR 2.x expression to
install the Python run-time library. While we're at it, we're building the
run-time library for C++ and Java, too. There is still work to be done: the
stringtemplate library doesn't find antlr.py without help yet.
svn path=/nixpkgs/trunk/; revision=14489
2009-03-10 12:01:22 +00:00
Marc Weber
b56ed35851
replacing applyAndFun by lib.defaultOverridableDelayableArgs
...
applyAndFun has a bug resulting in the same arg beeing added more than
once when using a concatenating merge function for the attr set.
I've tried giving the function a name "overridableDelayableArgs" which
resembles its usage much more.
important refactoring:
applyAndFun had .fun and .funMerge only when passing the merge
function lib.mergeOrApply
composableDerivation {
initial = {
...
};
}
to
overridableDelayableArgs has always .replace and .merge
composableDerivation {} {
...
}
svn path=/nixpkgs/trunk/; revision=14428
2009-03-06 23:21:28 +00:00
Marc Weber
51289a41b0
adjust packages to overridableDelayableArgs
...
svn path=/nixpkgs/trunk/; revision=14427
2009-03-06 23:21:24 +00:00
Ludovic Courtès
a2317f6997
Doxygen 1.5.8.
...
svn path=/nixpkgs/trunk/; revision=14350
2009-03-05 15:17:53 +00:00
Eelco Dolstra
fcad0b0a5a
* Cleaned up a lot of description fields that contained newlines.
...
Some of these should be longDescriptions, but most others just
shouldn't contain newlines. E.g. write
description = "Bla";
and not
description = ''
Bla
'';
This pollutes "nix-env -qa --description" output.
svn path=/nixpkgs/trunk/; revision=14310
2009-03-03 13:27:40 +00:00
Eelco Dolstra
2c0558e11c
* Valgrind 3.4.1.
...
svn path=/nixpkgs/trunk/; revision=14304
2009-03-03 09:19:50 +00:00
Ludovic Courtès
820ee6e61b
G-Wrap 1.9.12.
...
svn path=/nixpkgs/trunk/; revision=14248
2009-02-25 16:57:41 +00:00
Peter Simons
c8e6fa7dd6
cmake: added (low priority) expression for 2.6.3-rc-15.
...
svn path=/nixpkgs/trunk/; revision=14124
2009-02-19 14:41:51 +00:00
Eelco Dolstra
6d62e290a0
* elfutils: updated to 0.140. The older versions don't seem to be
...
needed.
svn path=/nixpkgs/branches/stdenv-updates/; revision=14105
2009-02-17 16:42:51 +00:00
Ludovic Courtès
f59b3d14dc
Add SLOCCount, a tool to count source lines of code (SLOCs).
...
svn path=/nixpkgs/trunk/; revision=14091
2009-02-17 10:11:33 +00:00
Eelco Dolstra
62fa1a418f
* cmake setup hook: override the whole configurePhase rather than
...
setting a postUnpack hook.
svn path=/nixpkgs/trunk/; revision=14074
2009-02-13 14:43:01 +00:00
Eelco Dolstra
390695e73f
* Sync with the trunk.
...
svn path=/nixpkgs/branches/stdenv-updates/; revision=14057
2009-02-12 21:16:55 +00:00
Michael Raskin
7590daad42
Extra mirror for lsof
...
svn path=/nixpkgs/trunk/; revision=14036
2009-02-11 21:51:05 +00:00
Eelco Dolstra
efbfa0c395
* Latest lsof.
...
svn path=/nixpkgs/trunk/; revision=14025
2009-02-10 23:11:29 +00:00
Ludovic Courtès
6aa15fcfb0
GNU gperf 3.0.4.
...
svn path=/nixpkgs/branches/stdenv-updates/; revision=13987
2009-02-05 16:49:41 +00:00
Ludovic Courtès
8b87ac3eeb
GNU Binutils 2.19.1.
...
svn path=/nixpkgs/branches/stdenv-updates/; revision=13975
2009-02-03 19:36:56 +00:00
Eelco Dolstra
e8358099f5
* Doh.
...
svn path=/nixpkgs/branches/stdenv-updates/; revision=13959
2009-02-02 15:41:13 +00:00
Eelco Dolstra
a68773a3ea
* GNU m4: `make check' fails on Darwin:
...
===
Checking ./219.improved_f
Checking ./stackovf.test
Stack soft limit set to 300K
Failure - m4 aborted unexpectedly
Output from m4:
m4: internal error detected; please report this bug to <bug-m4@gnu.org>: Bus error
Skipped checks were:
./116.changeword ./117.changeword ./118.changeword ./119.changeword ./120.changeword ./121.changeword
Failed checks were:
./stackovf.test
make[2]: *** [check] Error 1
make[1]: *** [check-recursive] Error 1
===
So disable the check on Darwin for now.
svn path=/nixpkgs/branches/stdenv-updates/; revision=13958
2009-02-02 15:34:59 +00:00
Eelco Dolstra
15258b7f50
* Disable make check.
...
svn path=/nixpkgs/branches/stdenv-updates/; revision=13937
2009-02-01 21:21:21 +00:00
Eelco Dolstra
c584bb878a
* Sync with trunk.
...
svn path=/nixpkgs/branches/stdenv-updates/; revision=13903
2009-01-29 16:33:02 +00:00
Nicolas Pierron
507ab31cbe
Add ragel: A state machine compiler.
...
svn path=/nixpkgs/trunk/; revision=13881
2009-01-27 14:00:54 +00:00
Lluís Batlle i Rossell
aad3e77b44
Adding cdecl-2.5
...
svn path=/nixpkgs/trunk/; revision=13833
2009-01-24 21:01:27 +00:00
Eelco Dolstra
808bf6d34a
* Make the nested output patch in GNU Make runtime configurable (by
...
setting the NIX_INDENT_MAKE variable; disabled by default) so we
don't need a separate gnumakeNix package.
svn path=/nixpkgs/branches/stdenv-updates/; revision=13807
2009-01-19 18:49:58 +00:00
Eelco Dolstra
c1579d2e78
* stdenv branch: synced with the trunk.
...
svn path=/nixpkgs/branches/stdenv-updates/; revision=13785
2009-01-16 10:59:27 +00:00
Peter Simons
6fb297513a
Committing Lluís Batlle's submissions from mailing list posting
...
<45219fb00901110456i6f21db35tbd1894eaea2146ff@mail.gmail.com>:
* nixpkgs-ccrypt-1.7-new.patch
* nixpkgs-cmake-add-ccmake.patch
* nixpkgs-cpufrequtils-005-new.patch
* nixpkgs-dwm-5.1-fix.patch
* nixpkgs-freeimage-3.11.0-new.patch
* nixpkgs-proxychains-3.1-new.patch
* nixpkgs-psi-to-0.12.patch
* nixpkgs-skype-to-2.0.0.72.patch
* nixpkgs-truecrypt-6.1a-fix.patch
* nixpkgs-vxl-1.11.0-new.patch
* nixpkgs-xkb-popular-esperanto-symbols.patch
* nixpkgs-xorg-via-video-fix.patch
svn path=/nixpkgs/trunk/; revision=13751
2009-01-12 21:12:07 +00:00
Ludovic Courtès
c18603c3b3
GDB: Use the system Readline library.
...
svn path=/nixpkgs/trunk/; revision=13746
2009-01-12 18:06:32 +00:00
Eelco Dolstra
7e9eb1bf70
* Valgrind 3.4.0.
...
* callgrind_annotate.patch isn't needed because the generic builder
rewrites /usr/bin/perl automatically.
svn path=/nixpkgs/trunk/; revision=13705
2009-01-05 10:51:57 +00:00
Andres Löh
c1ae54a6b3
version bump to 0.9.7
...
svn path=/nixpkgs/trunk/; revision=13697
2009-01-04 13:48:58 +00:00
Michael Raskin
f87ad9b663
Autoconf 2.13 (older version used by Mozilla)
...
svn path=/nixpkgs/trunk/; revision=13691
2009-01-03 13:42:36 +00:00
Marc Weber
1b30419aa6
added yodl, dependency for zsh documentation
...
svn path=/nixpkgs/trunk/; revision=13669
2008-12-22 18:36:02 +00:00
Marc Weber
e996113be7
removed mkDerivationByConfiguration, using composableDerivation instead
...
qgis, vim_configurable both work now
svn path=/nixpkgs/trunk/; revision=13661
2008-12-20 01:20:35 +00:00
Ludovic Courtès
b942701506
GNU Bison 2.4.1.
...
svn path=/nixpkgs/trunk/; revision=13619
2008-12-12 12:37:29 +00:00
Eelco Dolstra
0cf7b1c811
* Latest strace.
...
svn path=/nixpkgs/trunk/; revision=13607
2008-12-10 17:09:11 +00:00
Eelco Dolstra
e31341510d
* Merged from the trunk. Let's see how well this works with
...
Subversion 1.5...
svn path=/nixpkgs/branches/stdenv-updates/; revision=13601
2008-12-10 09:59:21 +00:00
Ludovic Courtès
3918c63518
GNU Automake 1.10.2.
...
svn path=/nixpkgs/trunk/; revision=13562
2008-12-03 08:32:47 +00:00
Marc Weber
fd3148dd5e
new version icon-naming-utils-0.8.2
...
svn path=/nixpkgs/trunk/; revision=13551
2008-12-02 12:27:55 +00:00
Marc Weber
1a4a270855
bumped intltool to version 0.40.5
...
svn path=/nixpkgs/trunk/; revision=13434
2008-11-26 14:38:05 +00:00
Eelco Dolstra
f7f25d81a7
* Oops.
...
svn path=/nixpkgs/trunk/; revision=13301
2008-11-14 17:27:54 +00:00
Eelco Dolstra
aa84bce64d
* Get rid of all references to nix.cs.uu.nl.
...
svn path=/nixpkgs/trunk/; revision=13299
2008-11-14 16:57:19 +00:00
Eelco Dolstra
c1cbd437dc
* Doh.
...
svn path=/nixpkgs/trunk/; revision=13297
2008-11-14 16:28:15 +00:00
Eelco Dolstra
704e51d3e2
* Reenable the check phase in Bison 2.4.
...
* Use the passthru attribute.
svn path=/nixpkgs/trunk/; revision=13295
2008-11-14 15:53:07 +00:00
Peter Simons
6a051f96a2
Updated cmake to version 2.6.2.
...
svn path=/nixpkgs/trunk/; revision=13286
2008-11-13 21:05:01 +00:00
Michael Raskin
c5363217ad
meta.function -> passthru.function, not killing other contents of passthru
...
svn path=/nixpkgs/trunk/; revision=13190
2008-11-04 21:24:10 +00:00
Michael Raskin
8b06e2e228
Try producing release without running bison2.4 testsuite..
...
svn path=/nixpkgs/trunk/; revision=13189
2008-11-04 18:39:52 +00:00
Ludovic Courtès
d7a1a64e57
GNU Bison 2.3: Fix `meta.license'.
...
svn path=/nixpkgs/trunk/; revision=13182
2008-11-03 18:28:13 +00:00
Ludovic Courtès
c0960419b2
GNU Bison 2.3: Update `meta' attribute.
...
svn path=/nixpkgs/trunk/; revision=13181
2008-11-03 18:27:35 +00:00
Ludovic Courtès
8c1408bf27
GNU Bison 2.4 (2.3.x remains the default).
...
svn path=/nixpkgs/trunk/; revision=13180
2008-11-03 18:25:17 +00:00
Ludovic Courtès
6e9e3c0cc6
GNU Libtool 1.5.x: Add `meta' attribute.
...
svn path=/nixpkgs/trunk/; revision=13178
2008-11-03 10:23:33 +00:00
Ludovic Courtès
fccfff91dd
GNU Libtool 2.x: Add `meta' attribute.
...
svn path=/nixpkgs/trunk/; revision=13177
2008-11-03 10:22:41 +00:00
Ludovic Courtès
e967438c48
Add GNU Libtool 2.2.x.
...
svn path=/nixpkgs/trunk/; revision=13176
2008-11-03 10:15:37 +00:00
Ludovic Courtès
c4df2f80d5
GNU M4 1.4.12.
...
Untested!
svn path=/nixpkgs/branches/stdenv-updates/; revision=13142
2008-10-29 08:58:48 +00:00
Ludovic Courtès
c0892721d0
GNU Binutils 2.19.
...
Untested!
svn path=/nixpkgs/branches/stdenv-updates/; revision=13141
2008-10-29 08:57:58 +00:00
Ludovic Courtès
79bcd85e81
GNU cflow: Fix reference to `cpp'.
...
svn path=/nixpkgs/trunk/; revision=13132
2008-10-28 10:25:10 +00:00
Ludovic Courtès
6921e41e84
Add GNU cflow.
...
svn path=/nixpkgs/trunk/; revision=13129
2008-10-28 08:43:44 +00:00
Peter Simons
574a1aa636
Added build expression for doxygen 1.5.7.1.
...
svn path=/nixpkgs/trunk/; revision=13106
2008-10-23 14:23:12 +00:00
Ludovic Courtès
8521b5c73f
DejaGNU: Update comments, document chroot impurity.
...
svn path=/nixpkgs/trunk/; revision=13088
2008-10-16 20:54:32 +00:00
Ludovic Courtès
81542299cc
DejaGNU: Disable test suite for now.
...
svn path=/nixpkgs/trunk/; revision=13087
2008-10-16 20:11:21 +00:00
Eelco Dolstra
5bc2dc536d
* `pkg-config --cflags': ignore Requires.private (just like --libs).
...
Whether this is correct is debatable (especially since there is no
formal semantics for Requires.private), but not ignoring it breaks
some packages (like Pango's dependency on Cairo).
svn path=/nixpkgs/branches/stdenv-updates/; revision=13060
2008-10-14 12:06:36 +00:00
Eelco Dolstra
1e6622f4d5
* The patch for proper Requires.private processing is still necessary,
...
unfortunately. For instance, libxcb's xcb.pc declares:
Requires.private: pthread-stubs ...
Thus libxcb has to declare the pthread-stubs package as a
propagatedBuildInput, otherwise packages that check for libxcb using
pkg-config (such as libX11) will fail. But then we get a totally
unnecessary additional runtime dependency, which is clearly a bad
thing.
svn path=/nixpkgs/branches/stdenv-updates/; revision=13058
2008-10-13 12:51:04 +00:00
Ludovic Courtès
b43d4f87db
Pkgconfig 0.23.
...
Untested!
svn path=/nixpkgs/branches/stdenv-updates/; revision=13054
2008-10-12 19:15:29 +00:00
Eelco Dolstra
5eef7df51d
* intltool: deleted redundant copy (it's already in the Gnome Nix
...
expressions).
* Fixed xkbcomp: it no longer found the keyboard definitions since it
disregards the -R option passed by the X server (it chdirs to the -R
path, but "." has been removed from the xkbcomp search path in
xkbcomp 1.0.5). Build it with /etc/X11/xkb as its default
location. This is less pure but it does allow for updating
xkeyboard-config in a running server.
* xkeyboard-config: updated to 1.4.
svn path=/nixpkgs/branches/stdenv-updates/; revision=13018
2008-10-09 12:12:58 +00:00
Eelco Dolstra
0d62334693
* 1.4.11.nix -> default.nix.
...
svn path=/nixpkgs/branches/stdenv-updates/; revision=12997
2008-10-08 08:47:20 +00:00
Eelco Dolstra
51aa939b21
* GNU M4 1.4.11.
...
svn path=/nixpkgs/branches/stdenv-updates/; revision=12993
2008-10-07 17:34:00 +00:00
Eelco Dolstra
bf65ff9ec6
* Use the texinfo-4.13a tarball. Strangely, the texinfo-4.13 tarball
...
has a different hash on ftp.nluug.nl, which happens to be the first
mirror for fetchurl, thus building texinfo failed.
svn path=/nixpkgs/trunk/; revision=12902
2008-09-23 00:21:49 +00:00
Ludovic Courtès
a4a186d4cf
GNU Texinfo 4.13.
...
svn path=/nixpkgs/trunk/; revision=12901
2008-09-22 21:21:39 +00:00
Ludovic Courtès
88f0359c5c
OProfile 0.9.4.
...
svn path=/nixpkgs/trunk/; revision=12867
2008-09-15 15:26:01 +00:00
Ludovic Courtès
a8876e7130
GNU Autoconf 2.63.
...
svn path=/nixpkgs/trunk/; revision=12840
2008-09-11 12:45:20 +00:00
Ludovic Courtès
0a096340ad
GDB 6.8.
...
svn path=/nixpkgs/trunk/; revision=12792
2008-09-03 13:12:23 +00:00
Peter Simons
85546a8e31
Updated scons and twisted; added buildbot.
...
* Updated scons to version 1.0.0. Also added appropriate makeWrapper calls to
ensure that the python binary finds its library files.
* Updated Twisted from 2.5 to 8.1.
* Added an expression for buildbot.
svn path=/nixpkgs/trunk/; revision=12782
2008-09-01 15:11:09 +00:00
Pjotr Prins
73d2e4f49d
- Some Ruby interpreter bumped version
...
- Kernel headers 2.6.18 added (XEN virtual images)
- unifdef package added for kernel headers 2.6.18
- Python Zope and 4suite added
- Trying bioconductor packages with R-lang (still failing)
- Bumped gmp version
- Added rq cluster runner - still requires extra gems (installs, but does not run)
svn path=/nixpkgs/trunk/; revision=12766
2008-08-29 13:53:28 +00:00
Eelco Dolstra
b35469a42e
* Nitpick.
...
svn path=/nixpkgs/trunk/; revision=12747
2008-08-27 15:21:10 +00:00
Ludovic Courtès
74d72ee6bf
Cscope: Fix erroneous substitution that caused Cscope to depend on all
...
of stdenv.
svn path=/nixpkgs/trunk/; revision=12714
2008-08-25 19:34:14 +00:00
Ludovic Courtès
956a4e1ed2
Add Cscope, a C code browser.
...
svn path=/nixpkgs/trunk/; revision=12711
2008-08-25 15:34:14 +00:00
Ludovic Courtès
3328fd9d3d
Add Sparse, a static analysis tool for C.
...
svn path=/nixpkgs/trunk/; revision=12696
2008-08-22 18:33:52 +00:00
Marc Weber
c4270fb9b8
moved hasktags to ghc68executables, updated url to new location
...
svn path=/nixpkgs/trunk/; revision=12680
2008-08-21 11:07:44 +00:00
Eelco Dolstra
1acf5fa9f0
* Make Valgrind's default suppressions useful for Nix-compiled
...
programs (e.g. a rule should match any libc.so, not just
/lib/libc.so).
svn path=/nixpkgs/trunk/; revision=12661
2008-08-19 13:03:08 +00:00
Michael Raskin
87ff8d6347
Changed builderDefs to use composedArgsAndFun, reduced number of nulls, made overrides in builderDefsPackage to work in an intuitive manner.
...
svn path=/nixpkgs/trunk/; revision=12655
2008-08-19 05:54:09 +00:00
Marc Weber
9e55727832
Added:
...
* dmenu
* gftp
* micropolis
* byacc as a build-time dependency for micropolis
contributed by baldo <baldo@quimby.lan>
svn path=/nixpkgs/trunk/; revision=12526
2008-08-06 20:39:01 +00:00
Eelco Dolstra
0846ca2e5b
* Don't fixup "#! /bin/sh" in Autoconf/Automake/Libtool, otherwise they
...
will use the "fixed" path in generated files.
svn path=/nixpkgs/trunk/; revision=12485
2008-08-04 14:37:51 +00:00
Ludovic Courtès
e79ae4bec4
Autobuild: Wrap `abbuild-sourceforge'.
...
svn path=/nixpkgs/trunk/; revision=12443
2008-07-28 22:54:31 +00:00
Ludovic Courtès
95fb46a440
Add Simon Josefsson's Autobuild tool.
...
svn path=/nixpkgs/trunk/; revision=12442
2008-07-28 21:29:17 +00:00
Eelco Dolstra
8f309bc83e
* Add a meta attribute.
...
svn path=/nixpkgs/trunk/; revision=12415
2008-07-24 13:02:22 +00:00
Andres Löh
cf7b225cf4
* changed from haddock-2.0.0.0 to haddock-2.1.0
...
(both only work with ghc-6.8.2, not ghc-6.8.3)
* added haddock-0.9 as a version that compiles with
nearly all ghc's we have
* added haddock-0.9-boot the works with ghc-6.4.2-boot
* the haddock-0.9-boot is now used to generate library
documentation while building ghc-6.8.3
svn path=/nixpkgs/trunk/; revision=12392
2008-07-22 13:01:30 +00:00
Peter Simons
a16eebd0a6
Cosmetic, no functional change intended.
...
This patch moves curly braces to the end of the line, i.e.
foo = {
...
};
instead of the previously used style:
foo =
{
...
};
I commit this change hoping that my contributions to this project now conform
to the rules described in maintainers/docs/coding-conventions.txt so that the
self-appointed indention sheriff of the NixOS community can finally get off my
back and rest assured knowing that all i's are dotted and all t's are crossed.
svn path=/nixpkgs/trunk/; revision=12386
2008-07-18 20:11:25 +00:00
Ludovic Courtès
57030a28aa
Add Splint, a static code analyzer for C.
...
svn path=/nixpkgs/trunk/; revision=12343
2008-07-11 09:13:34 +00:00
Nicolas Pierron
bb72d90805
Add "ddd": Graphical front-end for command-line debuggers.
...
svn path=/nixpkgs/trunk/; revision=12336
2008-07-10 16:56:51 +00:00
Wouter den Breejen
33efc97c20
Put patches in svn please.
...
svn path=/nixpkgs/trunk/; revision=12318
2008-07-08 05:52:09 +00:00
Wouter den Breejen
e9df8084c2
Put patches in svn please.
...
svn path=/nixpkgs/trunk/; revision=12317
2008-07-08 05:51:59 +00:00
Ludovic Courtès
4793092374
GNU Make: Make `nix-log2xml' support optional.
...
One question remains: how to make the option available to the user.
`getConfig' is nice but useless as long as `useFromStdenv' prevails.
svn path=/nixpkgs/trunk/; revision=12311
2008-07-07 22:02:36 +00:00
Ludovic Courtès
b71ae8ce6b
GNU Automake 1.10.1, with test suite.
...
svn path=/nixpkgs/trunk/; revision=12241
2008-07-02 15:27:07 +00:00
Ludovic Courtès
7a1735a705
Add GNU M4 1.4.11, with test suite and all.
...
Can't replace 1.4.9 right now since it's part of stdenv.
svn path=/nixpkgs/trunk/; revision=12238
2008-07-01 19:50:34 +00:00
Ludovic Courtès
117865a28f
Switch to GNU Autoconf 2.62.
...
svn path=/nixpkgs/trunk/; revision=12230
2008-07-01 08:31:48 +00:00
Ludovic Courtès
21e500ac88
GNU Autoconf 2.62 improvements.
...
svn path=/nixpkgs/trunk/; revision=12228
2008-07-01 08:07:22 +00:00
Eelco Dolstra
aaccd6f6e2
* Fix building the Fortran compiler.
...
svn path=/nixpkgs/trunk/; revision=12201
2008-06-27 14:43:25 +00:00
Eelco Dolstra
de4901c4fe
* lsof 4.80.
...
svn path=/nixpkgs/trunk/; revision=12186
2008-06-25 13:08:09 +00:00
Peter Simons
4842708ca1
scons: install library files in python's site-package directory
...
svn path=/nixpkgs/trunk/; revision=12179
2008-06-23 22:24:12 +00:00
Michael Raskin
8b90ef4690
Python must be propagatedBuildInputs now that they are using env
...
svn path=/nixpkgs/trunk/; revision=12158
2008-06-19 07:24:43 +00:00
Peter Simons
bc4f5932ad
scons: updated to version 0.95.5 and added selectVersion dispatcher
...
Scons is not only a tool, it's also a python library. However, the
modules are installed in ~/.nix-profile/lib/scons-${version} -- not in
python's "site-packages" directory -- so python won't find the library
without further help. Maybe there should be a symlink in nix-profile? I
guess there should, but I didn't know how to write that into the
expression.
svn path=/nixpkgs/trunk/; revision=12157
2008-06-18 22:48:54 +00:00
Michael Raskin
71e1e1fe6e
Added autoconf 2.62
...
svn path=/nixpkgs/trunk/; revision=12117
2008-06-16 12:58:43 +00:00
Eelco Dolstra
fc5eebdf8b
* Merged the stdenv branch
...
(https://svn.nixos.org/repos/nix/nixpkgs/branches/stdenv-updates
-r10966:12061).
svn path=/nixpkgs/trunk/; revision=12073
2008-06-13 11:46:39 +00:00
Eelco Dolstra
5a66790cce
* Valgrind 3.3.1.
...
svn path=/nixpkgs/trunk/; revision=12071
2008-06-13 09:27:02 +00:00
Ludovic Courtès
ff704a0102
Add Sysprof, a system-wide profiler for Linux.
...
svn path=/nixpkgs/trunk/; revision=12008
2008-06-07 14:02:17 +00:00
Ludovic Courtès
32588e53ef
Add pmccabe, a tool that computes the cyclomatic complexity of C/C++ source.
...
svn path=/nixpkgs/trunk/; revision=12000
2008-06-06 12:26:01 +00:00
Ludovic Courtès
e24afc19ad
Add OProfile, a system-wide profiler for Linux.
...
svn path=/nixpkgs/trunk/; revision=11984
2008-06-04 21:23:30 +00:00
Eelco Dolstra
5d6247cb96
* Use 0.4.
...
svn path=/nixpkgs/branches/stdenv-updates/; revision=11977
2008-06-04 11:27:35 +00:00
Ludovic Courtès
c28744816a
Valgrind: Fix `callgrind_annotate'.
...
svn path=/nixpkgs/trunk/; revision=11962
2008-06-03 21:25:58 +00:00
Ludovic Courtès
ec86f5b6b4
Valgrind: Fix dependencies.
...
svn path=/nixpkgs/trunk/; revision=11961
2008-06-03 20:56:12 +00:00
Eelco Dolstra
c6e98aeba3
* Doh!
...
svn path=/nixpkgs/branches/stdenv-updates/; revision=11959
2008-06-03 14:36:15 +00:00
Eelco Dolstra
5fadd928bc
* Use a fixed patchelf.
...
svn path=/nixpkgs/branches/stdenv-updates/; revision=11958
2008-06-03 14:29:14 +00:00
Marc Weber
026d26ec9f
Updated hash of hasktags
...
svn path=/nixpkgs/trunk/; revision=11939
2008-05-30 19:16:22 +00:00
Eelco Dolstra
0901882c1e
* Use the latest patchelf.
...
svn path=/nixpkgs/branches/stdenv-updates/; revision=11931
2008-05-29 14:19:34 +00:00
Eelco Dolstra
25245042c2
* Turn on ld's --enable-new-dtags option by default to get RUNPATHs
...
instead of RPATHs. Borrowed from Gentoo.
svn path=/nixpkgs/branches/stdenv-updates/; revision=11930
2008-05-29 14:16:35 +00:00
Michael Raskin
82177d1bc2
Added xxdiff
...
svn path=/nixpkgs/trunk/; revision=11888
2008-05-25 20:43:56 +00:00
Marc Weber
32bf11a247
updated hasktags (now uses file extension to distingiush between (non) and literate files
...
svn path=/nixpkgs/trunk/; revision=11862
2008-05-20 18:25:06 +00:00
Marc Weber
c59433ffda
updated ghc stuff (added WashNGo, readded support for using local package db)
...
svn path=/nixpkgs/trunk/; revision=11819
2008-05-13 08:40:57 +00:00
Marc Weber
1f15a6abfd
updated cmake to 2.6.0 (Pierre on #cmake told me it's almost compatible with 2.4) so I don't expect any trouble
...
svn path=/nixpkgs/trunk/; revision=11814
2008-05-11 14:52:09 +00:00
Marc Weber
52c3910434
added cproto ( C function prototype generator )
...
svn path=/nixpkgs/trunk/; revision=11730
2008-04-27 18:20:57 +00:00
Eelco Dolstra
09ab596e0f
* Remove calls to fail().
...
svn path=/nixpkgs/branches/stdenv-updates/; revision=11690
2008-04-23 07:34:20 +00:00
Ludovic Courtès
629754cc94
Update Exuberant Ctags.
...
svn path=/nixpkgs/trunk/; revision=11678
2008-04-22 08:50:10 +00:00
Ludovic Courtès
f875c682d4
Add DejaGNU, a testing framework.
...
svn path=/nixpkgs/trunk/; revision=11623
2008-04-14 11:47:26 +00:00
Tobias Hammerschmidt
7b9624cda6
doh!
...
svn path=/nixpkgs/trunk/; revision=11594
2008-04-11 22:10:44 +00:00
Tobias Hammerschmidt
085dc5bc74
added ant-contrib, expression works but is really really ugly - maybe someone else can have a look at it?
...
svn path=/nixpkgs/trunk/; revision=11588
2008-04-11 21:32:00 +00:00
Marc Weber
772fd74b99
Updated my ghc stuff.
...
New is the file containing executables (such as alex/ happy)
some new libraries
The wrapper no longer installs tags by default. You have to add it to your config
So I'm ready to start merging
svn path=/nixpkgs/trunk/; revision=11554
2008-04-11 00:40:10 +00:00
Arie Middelkoop
1a715e22e2
uuagc 0.9.6
...
svn path=/nixpkgs/trunk/; revision=11515
2008-04-09 14:26:47 +00:00
Ludovic Courtès
4126f26c7e
Add G-Wrap, a binding generator for Guile.
...
svn path=/nixpkgs/trunk/; revision=11506
2008-04-09 07:56:52 +00:00
Ludovic Courtès
62bcc0f821
Add `doCheck' for Guile-Lint and Guile-Library.
...
svn path=/nixpkgs/trunk/; revision=11289
2008-03-26 15:20:25 +00:00
Marc Weber
3bcb0f794f
still a missing piece
...
svn path=/nixpkgs/trunk/; revision=11256
2008-03-21 18:11:55 +00:00
Marc Weber
5a78bbfc9f
hash updated (hasktags)
...
svn path=/nixpkgs/trunk/; revision=11254
2008-03-21 16:24:04 +00:00
Marc Weber
94113ffd61
hsc2hs moved to the right place
...
svn path=/nixpkgs/trunk/; revision=11249
2008-03-21 03:54:50 +00:00
Marc Weber
1061800db4
added hsc2hs (makes interfacing C -> haskell easier)
...
svn path=/nixpkgs/trunk/; revision=11248
2008-03-21 01:24:43 +00:00
Eelco Dolstra
2cf0055092
* lcov 1.6.
...
svn path=/nixpkgs/trunk/; revision=11245
2008-03-20 18:51:07 +00:00
Michael Raskin
a3ea4c135b
Newer flex.
...
svn path=/nixpkgs/trunk/; revision=11213
2008-03-20 09:50:15 +00:00
Arie Middelkoop
6aa42a8021
New hash for uuagc.
...
svn path=/nixpkgs/trunk/; revision=11114
2008-03-14 08:49:24 +00:00
Marc Weber
b35897972a
hasktags now supports literate haskell files
...
svn path=/nixpkgs/trunk/; revision=11063
2008-03-11 17:17:12 +00:00
Eelco Dolstra
4bd753eaeb
* Revert to pkg-config 0.22, even with the patch it changes the
...
Requires.private interpretation and I don't actually have a reason
to update to 0.23 anyway.
svn path=/nixpkgs/branches/stdenv-updates/; revision=11015
2008-03-07 15:40:07 +00:00
Eelco Dolstra
92f6176390
* pkg-config (note name change): updated to 0.23. Also, look in
...
share/pkgconfig in addition to lib/pkgconfig.
svn path=/nixpkgs/branches/stdenv-updates/; revision=10993
2008-03-06 16:22:24 +00:00
Michael Raskin
71f8e0911a
Added src to meta for builderDefs-based packages.
...
svn path=/nixpkgs/trunk/; revision=10913
2008-03-02 18:49:31 +00:00
Eelco Dolstra
d1b9dcd68f
* Added Emma, a Java code coverage tool.
...
svn path=/nixpkgs/trunk/; revision=10865
2008-02-26 15:48:14 +00:00
Eelco Dolstra
65dcf5ffa4
* Fix jre, and some cleanups.
...
svn path=/nixpkgs/trunk/; revision=10863
2008-02-26 15:24:33 +00:00
Eelco Dolstra
639f426905
* Moving stuff.
...
svn path=/nixpkgs/trunk/; revision=10861
2008-02-26 14:15:37 +00:00
Eelco Dolstra
421e413507
* Added Findbugs.
...
svn path=/nixpkgs/trunk/; revision=10854
2008-02-25 14:55:30 +00:00
Michael Raskin
34d02fef81
Fixes to builderDefs related to PATH_DELIMITER..
...
svn path=/nixpkgs/branches/stdenv-updates-merge/; revision=10841
2008-02-23 07:26:34 +00:00
Michael Raskin
7d4bcaece1
Ported elfutils fixes from -stdenv-updates.
...
svn path=/nixpkgs/branches/stdenv-updates-merge/; revision=10839
2008-02-23 05:25:32 +00:00
Michael Raskin
6c20576972
Ported fixes for lsof and gw6c from stdenv-updates
...
svn path=/nixpkgs/branches/stdenv-updates-merge/; revision=10825
2008-02-22 06:16:53 +00:00
Eelco Dolstra
67c961fd63
* Merged -r10790:HEAD from the trunk.
...
svn path=/nixpkgs/branches/stdenv-updates-merge/; revision=10815
2008-02-21 17:34:03 +00:00
Ludovic Courtès
cee8b8ebac
Add GNU Texinfo 4.9, use it to produce GCC 4.x documentation.
...
svn path=/nixpkgs/trunk/; revision=10805
2008-02-21 15:34:56 +00:00
Eelco Dolstra
e12b421add
* Merged most of the stdenv-updates branch. Some stuff didn't
...
merge cleanly right away (kde-4, kernel stuff) so it should be
merged later. But the stdenv stuff is all there.
svn path=/nixpkgs/branches/stdenv-updates-merge/; revision=10793
2008-02-20 23:02:41 +00:00
Eelco Dolstra
a1bcd5d936
* No idea what this was for.
...
svn path=/nixpkgs/trunk/; revision=10779
2008-02-20 13:07:11 +00:00
Michael Raskin
96ddccf6b2
Some fixes to build elfutils and ltrace, added x11vnc, forward-ported kernel 2.6.23.16 as default.
...
svn path=/nixpkgs/branches/stdenv-updates/; revision=10718
2008-02-18 07:23:05 +00:00
Ludovic Courtès
3e7da32582
Flex 2.5.34.
...
svn path=/nixpkgs/trunk/; revision=10713
2008-02-16 19:12:55 +00:00
Ludovic Courtès
a2339db1b1
Libtool: Use `mirror://'.
...
svn path=/nixpkgs/trunk/; revision=10712
2008-02-15 21:47:55 +00:00
Ludovic Courtès
fdd7bdb6dc
GNU Libtool 1.5.26.
...
svn path=/nixpkgs/trunk/; revision=10711
2008-02-15 21:25:44 +00:00
Ludovic Courtès
9c3c9f94e5
Add Guile-Lint, a syntax and semantics checker for GNU Guile.
...
svn path=/nixpkgs/trunk/; revision=10710
2008-02-15 16:30:33 +00:00
Michael Raskin
d607e902af
Forward port: ccache, FF3b3
...
svn path=/nixpkgs/branches/stdenv-updates/; revision=10694
2008-02-14 20:18:07 +00:00
Marc Weber
fe5caa2f0f
modified improved hasktags (can be removed when my changes are merged into ghc)
...
improved ghcs expression file Now you have tags for all libraries.
I still have to work on speed
svn path=/nixpkgs/trunk/; revision=10657
2008-02-13 11:15:08 +00:00
Ludovic Courtès
79cc1c7307
Add ccache, a compiler cache.
...
svn path=/nixpkgs/trunk/; revision=10644
2008-02-12 13:32:37 +00:00
Yury G. Kudryashov
e2751942c7
cmake: 2.4.8 added
...
svn path=/nixpkgs/branches/stdenv-updates/; revision=10611
2008-02-10 17:41:51 +00:00
Michael Raskin
4df190c703
Various fixes and updates to build that all.
...
svn path=/nixpkgs/branches/stdenv-updates/; revision=10568
2008-02-10 16:44:43 +00:00
Yury G. Kudryashov
fbfab88e04
Nix-expr style review
...
Unneded args.something replaced with
args: with args;
line. After this line args is the only place where we can recieve variables from.
Also removed several
buildInputs = [];
lines.
svn path=/nixpkgs/branches/stdenv-updates/; revision=10429
2008-01-31 10:41:04 +00:00
Yury G. Kudryashov
5bca69ac34
Nix-expr style review
...
Unneded args.something replaced with
args: with args;
line. After this line args is the only place where we can recieve variables from.
Also removed several
buildInputs = [];
lines.
svn path=/nixpkgs/trunk/; revision=10415
2008-01-30 17:20:48 +00:00
Yury G. Kudryashov
1ec43cc340
Added sdf2-bundle 2.4
...
svn path=/nixpkgs/branches/stdenv-updates/; revision=10382
2008-01-29 13:17:19 +00:00
Sander van der Burg
067aaa8004
Added sdf2-bundle 2.4
...
svn path=/nixpkgs/trunk/; revision=10371
2008-01-29 09:37:15 +00:00
Yury G. Kudryashov
da57804fff
Merged with trunk again
...
svn path=/nixpkgs/branches/stdenv-updates/; revision=10267
2008-01-23 18:11:03 +00:00
Andres Löh
1e1707f61c
* uuagc and uulib are now using ghc-6.8.2
...
svn path=/nixpkgs/trunk/; revision=10255
2008-01-23 08:36:03 +00:00
Andres Löh
61adeec0e5
* update alex to 2.2 and to use the generic Cabal builder
...
* change default version of ghc to ghc-6.8.2
* some references to ghc-6.6 and ghc-6.6.1 are left; these are
packages that to my knowledge don't work without ghc-6.8.2 without
some kind of work (such as upgrading to a later version or some
patch); I'll try to perform these remaining upgrades soon ...
svn path=/nixpkgs/trunk/; revision=10253
2008-01-22 22:43:38 +00:00
Andres Löh
84e7b463f5
* converted happy and haddock to use generic Cabal builder
...
svn path=/nixpkgs/trunk/; revision=10252
2008-01-22 21:10:19 +00:00
Andres Löh
92886a3321
* added haddock documentation tool for ghc/Haskell
...
svn path=/nixpkgs/trunk/; revision=10229
2008-01-19 17:05:54 +00:00
Michael Raskin
bc46eaf404
Some review of builder-defs and dependent files. No rebuild needed. Now it should be possible to override elements in builderDefs
...
svn path=/nixpkgs/trunk/; revision=10214
2008-01-18 12:36:56 +00:00
Andres Löh
432c157293
* added happy-1.17
...
svn path=/nixpkgs/trunk/; revision=10208
2008-01-17 18:21:50 +00:00
Yury G. Kudryashov
a7703662a4
Merged with trunk
...
svn path=/nixpkgs/branches/stdenv-updates/; revision=10145
2008-01-15 00:55:21 +00:00
Michael Raskin
f75be37d70
Returned elfutils 0.127 as an option.. I do not see why ltrace fails with 0.131. Will investigate after the merge.
...
svn path=/nixpkgs/trunk/; revision=10041
2008-01-01 15:44:27 +00:00
Armijn Hemel
dcec5245e0
update to 0.131
...
svn path=/nixpkgs/trunk/; revision=10040
2008-01-01 14:50:01 +00:00
Armijn Hemel
32e545f7a1
4.5.15 -> 4.5.16
...
svn path=/nixpkgs/trunk/; revision=10016
2007-12-31 19:50:01 +00:00
Armijn Hemel
3e440f3acc
1.3.33
...
svn path=/nixpkgs/trunk/; revision=10015
2007-12-31 19:46:16 +00:00
Michael Raskin
4290be9a99
Various fixes to lessen reliance on nix.cs.uu.nl for tarballs; version bumps for unavailabel tarballs; ATI driver builds now
...
svn path=/nixpkgs/trunk/; revision=9952
2007-12-18 22:56:12 +00:00
Eelco Dolstra
f4ae74eae8
* Valgrind 3.3.0.
...
svn path=/nixpkgs/trunk/; revision=9924
2007-12-12 11:12:26 +00:00
Andres Löh
d9b8b152d6
* added alex (lexer generator for Haskell)
...
svn path=/nixpkgs/trunk/; revision=9906
2007-12-11 13:38:48 +00:00
Yury G. Kudryashov
d23f0bf7e9
merging trunk...
...
svn path=/nixpkgs/branches/stdenv-updates/; revision=9895
2007-12-08 15:21:03 +00:00
Yury G. Kudryashov
8515c17966
Added gdmap, changed builder-defs to use derivation attribute on propagatedBuildInputs, manually fixed Xorg expression problem for Compiz, various fixes.
...
svn path=/nixpkgs/branches/stdenv-updates/; revision=9893
2007-12-08 01:10:32 +00:00
Yury G. Kudryashov
3896cd4a28
* Get rid of the `(import (__toPath ((toString
...
./JustNothing/.. )+"/"+args.version+".nix")))' hack, you can also just
write `import (./path/to/pkg + "/${version}.nix)'.
svn path=/nixpkgs/branches/stdenv-updates/; revision=9886
2007-12-08 01:09:00 +00:00
Yury G. Kudryashov
ec6a614c1e
Added indent
...
svn path=/nixpkgs/branches/stdenv-updates/; revision=9885
2007-12-08 01:08:37 +00:00
Marc Weber
dc5292a6b8
xara update (now works on i686 and _64 again)
...
selenium-rc binaries (automatic web application testing remote control server)
svn path=/nixpkgs/trunk/; revision=9835
2007-12-03 14:33:54 +00:00
Yury G. Kudryashov
13c5a3a17a
Revert "setup-hooks using addToSearchPath"
...
This reverts commit af60b70e57ba79f9ebf0f944ba0698e5661bc4dc.
(introduced by wrong merge strategy during git rebase)
svn path=/nixpkgs/branches/stdenv-updates/; revision=9827
2007-12-01 20:29:42 +00:00
Yury G. Kudryashov
216657f62e
setup-hooks using addToSearchPath
...
I've accidentially reverted setup-hooks while merging with trunk. Correcting it.
svn path=/nixpkgs/branches/stdenv-updates/; revision=9824
2007-12-01 20:29:14 +00:00
Yury G. Kudryashov
c116932a7e
swig: upgrade to 1.3.33
...
svn path=/nixpkgs/branches/stdenv-updates/; revision=9822
2007-12-01 20:05:35 +00:00
Yury G. Kudryashov
62676e09eb
setup-hooks using addToSearchPath
...
I've accidentially reverted setup-hooks while merging with trunk. Correcting it.
svn path=/nixpkgs/branches/stdenv-updates/; revision=9821
2007-12-01 20:05:26 +00:00
Michael Raskin
1bbc6fe55a
Added gdmap, changed builder-defs to use derivation attribute on propagatedBuildInputs, manually fixed Xorg expression problem for Compiz, various fixes.
...
svn path=/nixpkgs/trunk/; revision=9812
2007-12-01 16:20:23 +00:00
Eelco Dolstra
c54b75c959
* Get rid of the `(import (__toPath ((toString
...
./JustNothing/.. )+"/"+args.version+".nix")))' hack, you can also just
write `import (./path/to/pkg + "/${version}.nix)'.
svn path=/nixpkgs/trunk/; revision=9792
2007-11-26 13:24:56 +00:00
Michael Raskin
83e5475251
Added indent
...
svn path=/nixpkgs/trunk/; revision=9790
2007-11-25 18:35:33 +00:00
Yury G. Kudryashov
8792fb81c7
Merged with trunk.
...
The following is autogenerated by git:
commit 9aaede75e73be646f35069d0717c8c70004ba3f0
Author: raskin <raskin@70bd8c7a-acb8-0310-9f0d-9cc1c95dcdbb>
Date: Fri Nov 16 18:37:23 2007 +0000
This was needed for me to get a working gnome-doc-utils package
git-svn-id: https://svn.cs.uu.nl:12443/repos/trace/nixpkgs/trunk@9726 70bd8c7a-acb8-0310-9f0d-9cc1c95dcdbb
commit 751a9e6d19fc9e6c96b04eca450ea1b836d00865
Author: urkud <urkud@70bd8c7a-acb8-0310-9f0d-9cc1c95dcdbb>
Date: Fri Nov 16 17:30:34 2007 +0000
gdb upgraded
git-svn-id: https://svn.cs.uu.nl:12443/repos/trace/nixpkgs/trunk@9725 70bd8c7a-acb8-0310-9f0d-9cc1c95dcdbb
commit bb908853924046681d1cd6a85b05273aed14fd9f
Author: urkud <urkud@70bd8c7a-acb8-0310-9f0d-9cc1c95dcdbb>
Date: Fri Nov 16 17:29:11 2007 +0000
gphoto2 upgraded to 2.4.0: all-packages.nix
git-svn-id: https://svn.cs.uu.nl:12443/repos/trace/nixpkgs/trunk@9724 70bd8c7a-acb8-0310-9f0d-9cc1c95dcdbb
commit 619c7004d7140d6016927cd1114fd778aca3ecce
Author: MarcWeber <MarcWeber@70bd8c7a-acb8-0310-9f0d-9cc1c95dcdbb>
Date: Fri Nov 16 17:28:53 2007 +0000
git-svn-id: https://svn.cs.uu.nl:12443/repos/trace/nixpkgs/trunk@9723 70bd8c7a-acb8-0310-9f0d-9cc1c95dcdbb
commit f09310ed8403428021d2d751e273fc0add438032
Author: urkud <urkud@70bd8c7a-acb8-0310-9f0d-9cc1c95dcdbb>
Date: Fri Nov 16 17:28:17 2007 +0000
gphoto2 upgraded to 2.4.0
git-svn-id: https://svn.cs.uu.nl:12443/repos/trace/nixpkgs/trunk@9722 70bd8c7a-acb8-0310-9f0d-9cc1c95dcdbb
commit 26d5cc1628e51853fdb9a7d162361b3a13581461
Author: MarcWeber <MarcWeber@70bd8c7a-acb8-0310-9f0d-9cc1c95dcdbb>
Date: Fri Nov 16 17:27:27 2007 +0000
missing catalog added. Now you can open files
git-svn-id: https://svn.cs.uu.nl:12443/repos/trace/nixpkgs/trunk@9721 70bd8c7a-acb8-0310-9f0d-9cc1c95dcdbb
commit 4eb1f68d61077e66b9ca3a0de3c86b1024f06db1
Author: MarcWeber <MarcWeber@70bd8c7a-acb8-0310-9f0d-9cc1c95dcdbb>
Date: Fri Nov 16 17:09:32 2007 +0000
nix expression creating startup wrapper for jedit
git-svn-id: https://svn.cs.uu.nl:12443/repos/trace/nixpkgs/trunk@9720 70bd8c7a-acb8-0310-9f0d-9cc1c95dcdbb
commit 69701148e45d29b1712c9f14628459def54be076
Author: MarcWeber <MarcWeber@70bd8c7a-acb8-0310-9f0d-9cc1c95dcdbb>
Date: Fri Nov 16 17:06:53 2007 +0000
The nice programmers editor jedit is now built on nix as well.
git-svn-id: https://svn.cs.uu.nl:12443/repos/trace/nixpkgs/trunk@9719 70bd8c7a-acb8-0310-9f0d-9cc1c95dcdbb
commit 15ecdd411e78b952d8004323ec871ce6c4969c2e
Author: wbreejen <wbreejen@70bd8c7a-acb8-0310-9f0d-9cc1c95dcdbb>
Date: Fri Nov 16 14:41:15 2007 +0000
Missing gecko now.
git-svn-id: https://svn.cs.uu.nl:12443/repos/trace/nixpkgs/trunk@9715 70bd8c7a-acb8-0310-9f0d-9cc1c95dcdbb
commit 6975eb6f2a972cca2adb2943190a41880e3bedf7
Author: wbreejen <wbreejen@70bd8c7a-acb8-0310-9f0d-9cc1c95dcdbb>
Date: Fri Nov 16 14:36:15 2007 +0000
Fix path of libnotify
git-svn-id: https://svn.cs.uu.nl:12443/repos/trace/nixpkgs/trunk@9714 70bd8c7a-acb8-0310-9f0d-9cc1c95dcdbb
commit ef985f4e88db03a0861fe8ccc8b35ec329ef616a
Author: wbreejen <wbreejen@70bd8c7a-acb8-0310-9f0d-9cc1c95dcdbb>
Date: Fri Nov 16 14:34:02 2007 +0000
added libnotify
git-svn-id: https://svn.cs.uu.nl:12443/repos/trace/nixpkgs/trunk@9713 70bd8c7a-acb8-0310-9f0d-9cc1c95dcdbb
commit 7fb35510feb89fecc9d92810a723baead232dff4
Author: wbreejen <wbreejen@70bd8c7a-acb8-0310-9f0d-9cc1c95dcdbb>
Date: Fri Nov 16 14:33:36 2007 +0000
added libnotify
git-svn-id: https://svn.cs.uu.nl:12443/repos/trace/nixpkgs/trunk@9712 70bd8c7a-acb8-0310-9f0d-9cc1c95dcdbb
commit 7a9eb1e172ef5b111556d78a30003a87aee7f775
Author: wbreejen <wbreejen@70bd8c7a-acb8-0310-9f0d-9cc1c95dcdbb>
Date: Fri Nov 16 14:24:24 2007 +0000
libnotify is missing
git-svn-id: https://svn.cs.uu.nl:12443/repos/trace/nixpkgs/trunk@9711 70bd8c7a-acb8-0310-9f0d-9cc1c95dcdbb
commit 433cc0578ce00860ddfac7d7934818ec0584f6e1
Author: wbreejen <wbreejen@70bd8c7a-acb8-0310-9f0d-9cc1c95dcdbb>
Date: Fri Nov 16 14:08:04 2007 +0000
Added libsexy
git-svn-id: https://svn.cs.uu.nl:12443/repos/trace/nixpkgs/trunk@9710 70bd8c7a-acb8-0310-9f0d-9cc1c95dcdbb
commit 194a84b18965e9a3c8f9fa1305fac57690e683cb
Author: wbreejen <wbreejen@70bd8c7a-acb8-0310-9f0d-9cc1c95dcdbb>
Date: Fri Nov 16 14:07:30 2007 +0000
Added libsexy
git-svn-id: https://svn.cs.uu.nl:12443/repos/trace/nixpkgs/trunk@9709 70bd8c7a-acb8-0310-9f0d-9cc1c95dcdbb
commit 1d832560cf94bfa6793d90ff43f2235415bc3958
Author: wbreejen <wbreejen@70bd8c7a-acb8-0310-9f0d-9cc1c95dcdbb>
Date: Fri Nov 16 13:49:02 2007 +0000
Added openftd. Doesnt work (yet)
git-svn-id: https://svn.cs.uu.nl:12443/repos/trace/nixpkgs/trunk@9708 70bd8c7a-acb8-0310-9f0d-9cc1c95dcdbb
commit 58e8a73f63a85a22ca45f046579d89bd0359f8ee
Author: eelco <eelco@70bd8c7a-acb8-0310-9f0d-9cc1c95dcdbb>
Date: Fri Nov 16 13:08:20 2007 +0000
* GCC 3.4: pass --disable-multilib to make it build on x86_64.
git-svn-id: https://svn.cs.uu.nl:12443/repos/trace/nixpkgs/trunk@9704 70bd8c7a-acb8-0310-9f0d-9cc1c95dcdbb
commit 5ff88d858692e89120a4efa4acc2224eaf78d9a9
Author: raskin <raskin@70bd8c7a-acb8-0310-9f0d-9cc1c95dcdbb>
Date: Fri Nov 16 03:45:42 2007 +0000
bzip2 dependency added in a couple of places
git-svn-id: https://svn.cs.uu.nl:12443/repos/trace/nixpkgs/trunk@9702 70bd8c7a-acb8-0310-9f0d-9cc1c95dcdbb
commit 128ac8a7ee8668fc933f4933a66f491c44234379
Author: urkud <urkud@70bd8c7a-acb8-0310-9f0d-9cc1c95dcdbb>
Date: Thu Nov 15 23:47:03 2007 +0000
Added python to libgsf dependencies
git-svn-id: https://svn.cs.uu.nl:12443/repos/trace/nixpkgs/trunk@9699 70bd8c7a-acb8-0310-9f0d-9cc1c95dcdbb
commit 1847defee6331b03ba8a54ae9e3e68033310f7a2
Author: eelco <eelco@70bd8c7a-acb8-0310-9f0d-9cc1c95dcdbb>
Date: Thu Nov 15 17:05:45 2007 +0000
* Use latest Nix.
git-svn-id: https://svn.cs.uu.nl:12443/repos/trace/nixpkgs/trunk@9695 70bd8c7a-acb8-0310-9f0d-9cc1c95dcdbb
commit cb1992780c20cb5885cf4d3932e7352f8b912533
Author: raskin <raskin@70bd8c7a-acb8-0310-9f0d-9cc1c95dcdbb>
Date: Thu Nov 15 04:23:46 2007 +0000
Added a currently more functional URL for libgcrypt
git-svn-id: https://svn.cs.uu.nl:12443/repos/trace/nixpkgs/trunk@9688 70bd8c7a-acb8-0310-9f0d-9cc1c95dcdbb
commit 9d099dbef1a5721065bff5f2edd73844c829f538
Author: urkud <urkud@70bd8c7a-acb8-0310-9f0d-9cc1c95dcdbb>
Date: Thu Nov 15 00:16:03 2007 +0000
facile: fixed a typo
git-svn-id: https://svn.cs.uu.nl:12443/repos/trace/nixpkgs/trunk@9686 70bd8c7a-acb8-0310-9f0d-9cc1c95dcdbb
commit 031c5b7d0797f5eee7be0a06856530c29adee710
Author: urkud <urkud@70bd8c7a-acb8-0310-9f0d-9cc1c95dcdbb>
Date: Thu Nov 15 00:11:56 2007 +0000
Added kde-4
git-svn-id: https://svn.cs.uu.nl:12443/repos/trace/nixpkgs/trunk@9685 70bd8c7a-acb8-0310-9f0d-9cc1c95dcdbb
commit 81b3a7d92f2e9552c46ab47c75a2d3a40e151d43
Author: urkud <urkud@70bd8c7a-acb8-0310-9f0d-9cc1c95dcdbb>
Date: Thu Nov 15 00:08:58 2007 +0000
Added new kde-4 staff
git-svn-id: https://svn.cs.uu.nl:12443/repos/trace/nixpkgs/trunk@9684 70bd8c7a-acb8-0310-9f0d-9cc1c95dcdbb
commit 18edb608ee7822438d4b2dc2a76af7567efd646a
Author: urkud <urkud@70bd8c7a-acb8-0310-9f0d-9cc1c95dcdbb>
Date: Wed Nov 14 23:48:40 2007 +0000
kde-4: removed old staff from kde-4 dir
git-svn-id: https://svn.cs.uu.nl:12443/repos/trace/nixpkgs/trunk@9683 70bd8c7a-acb8-0310-9f0d-9cc1c95dcdbb
commit 00d9b75d85f3a7de4db3feb313fe8d2d29f6bc2d
Author: urkud <urkud@70bd8c7a-acb8-0310-9f0d-9cc1c95dcdbb>
Date: Wed Nov 14 23:46:48 2007 +0000
lame: upgrade to 3.97
git-svn-id: https://svn.cs.uu.nl:12443/repos/trace/nixpkgs/trunk@9682 70bd8c7a-acb8-0310-9f0d-9cc1c95dcdbb
commit 52f8f699f29b6def41eee392f489c7e8ecd9399d
Author: urkud <urkud@70bd8c7a-acb8-0310-9f0d-9cc1c95dcdbb>
Date: Wed Nov 14 23:44:21 2007 +0000
libgsf: meta written
0.14.7 in my previous commit was a typo: 1.14.7 of course
git-svn-id: https://svn.cs.uu.nl:12443/repos/trace/nixpkgs/trunk@9681 70bd8c7a-acb8-0310-9f0d-9cc1c95dcdbb
commit 6e426380fc8c67b7dae57d4404ee7ca76d3e1d62
Author: urkud <urkud@70bd8c7a-acb8-0310-9f0d-9cc1c95dcdbb>
Date: Wed Nov 14 23:40:39 2007 +0000
libgsf: upgraded to 0.14.7
git-svn-id: https://svn.cs.uu.nl:12443/repos/trace/nixpkgs/trunk@9680 70bd8c7a-acb8-0310-9f0d-9cc1c95dcdbb
commit 7787b342945cb13856168a353fdc9b0062e5f32b
Author: urkud <urkud@70bd8c7a-acb8-0310-9f0d-9cc1c95dcdbb>
Date: Wed Nov 14 23:37:51 2007 +0000
clucene: upgrade, kde4: remove
clucene-core upgraded to 0.9.20
clucene-contrib removed (can't find any version later than 0.9.16a and don't
know whether it's compatible with new clucene-core)
kde4: old staff removed, will add new tonight
git-svn-id: https://svn.cs.uu.nl:12443/repos/trace/nixpkgs/trunk@9679 70bd8c7a-acb8-0310-9f0d-9cc1c95dcdbb
commit b4900dece179788dfb8879518b8ec639ba089980
Author: urkud <urkud@70bd8c7a-acb8-0310-9f0d-9cc1c95dcdbb>
Date: Wed Nov 14 23:25:32 2007 +0000
Strigi removed
I'll add a version from kdesupport trunk today
git-svn-id: https://svn.cs.uu.nl:12443/repos/trace/nixpkgs/trunk@9678 70bd8c7a-acb8-0310-9f0d-9cc1c95dcdbb
commit ffad224993440be069d4f15cf5e73ed018979311
Author: urkud <urkud@70bd8c7a-acb8-0310-9f0d-9cc1c95dcdbb>
Date: Wed Nov 14 23:23:36 2007 +0000
dbus-glib upgraded to 0.74, meta written
git-svn-id: https://svn.cs.uu.nl:12443/repos/trace/nixpkgs/trunk@9677 70bd8c7a-acb8-0310-9f0d-9cc1c95dcdbb
commit 6ae133a8d5d472d9f475cacb7f3ff3e6703fb34b
Author: urkud <urkud@70bd8c7a-acb8-0310-9f0d-9cc1c95dcdbb>
Date: Wed Nov 14 23:13:29 2007 +0000
xine-lib: upgraded to 1.1.8
git-svn-id: https://svn.cs.uu.nl:12443/repos/trace/nixpkgs/trunk@9676 70bd8c7a-acb8-0310-9f0d-9cc1c95dcdbb
commit d56f2643e631f8b3ce6e8228c35f2cc19755e2aa
Author: urkud <urkud@70bd8c7a-acb8-0310-9f0d-9cc1c95dcdbb>
Date: Wed Nov 14 23:11:37 2007 +0000
chmlib: upgraded to 0.39
git-svn-id: https://svn.cs.uu.nl:12443/repos/trace/nixpkgs/trunk@9675 70bd8c7a-acb8-0310-9f0d-9cc1c95dcdbb
commit c31c27f328fdd4ae99d48bcc512231639dfcf6e5
Author: urkud <urkud@70bd8c7a-acb8-0310-9f0d-9cc1c95dcdbb>
Date: Wed Nov 14 23:05:11 2007 +0000
Added facile library
git-svn-id: https://svn.cs.uu.nl:12443/repos/trace/nixpkgs/trunk@9674 70bd8c7a-acb8-0310-9f0d-9cc1c95dcdbb
commit 28f915ee41410b6f278faf07b0135bd4e9aeaf2f
Author: urkud <urkud@70bd8c7a-acb8-0310-9f0d-9cc1c95dcdbb>
Date: Wed Nov 14 23:03:29 2007 +0000
libgcrypt-1.3.1
git-svn-id: https://svn.cs.uu.nl:12443/repos/trace/nixpkgs/trunk@9673 70bd8c7a-acb8-0310-9f0d-9cc1c95dcdbb
commit ca314a236b855b73024677f6dc5bc021070c4e72
Author: urkud <urkud@70bd8c7a-acb8-0310-9f0d-9cc1c95dcdbb>
Date: Wed Nov 14 22:49:24 2007 +0000
Fixed a typo in ocaml-3.10.0
git-svn-id: https://svn.cs.uu.nl:12443/repos/trace/nixpkgs/trunk@9672 70bd8c7a-acb8-0310-9f0d-9cc1c95dcdbb
commit b3fa79d09289ab61a30f63692e7c475d0aec142e
Author: urkud <urkud@70bd8c7a-acb8-0310-9f0d-9cc1c95dcdbb>
Date: Wed Nov 14 22:39:58 2007 +0000
ocaml: Added 3.10.0, using getVersion staff
I've added the latest (3.10.0) version of ocaml and let the user choose default
version.
git-svn-id: https://svn.cs.uu.nl:12443/repos/trace/nixpkgs/trunk@9671 70bd8c7a-acb8-0310-9f0d-9cc1c95dcdbb
commit 853d65d8a9fd65f7bf918c42342baf6690008f54
Author: urkud <urkud@70bd8c7a-acb8-0310-9f0d-9cc1c95dcdbb>
Date: Wed Nov 14 22:22:06 2007 +0000
Let user to choose python2.4 or python2.5
Currently, there is some code duplication. I'll try to rewrite it without
modifying resulting derivations.
git-svn-id: https://svn.cs.uu.nl:12443/repos/trace/nixpkgs/trunk@9670 70bd8c7a-acb8-0310-9f0d-9cc1c95dcdbb
commit 65567e8e2e96d1a2e62af148fe043c86df0c5b60
Author: urkud <urkud@70bd8c7a-acb8-0310-9f0d-9cc1c95dcdbb>
Date: Wed Nov 14 21:57:26 2007 +0000
useVersion function added
git-svn-id: https://svn.cs.uu.nl:12443/repos/trace/nixpkgs/trunk@9669 70bd8c7a-acb8-0310-9f0d-9cc1c95dcdbb
commit 2e5e12d1fc1faded72235fa66eb8efaa92e597ba
Author: urkud <urkud@70bd8c7a-acb8-0310-9f0d-9cc1c95dcdbb>
Date: Wed Nov 14 21:41:01 2007 +0000
git: upgraded to 1.5.3.5; meta added; nix-expr slightly rewritten
git-svn-id: https://svn.cs.uu.nl:12443/repos/trace/nixpkgs/trunk@9668 70bd8c7a-acb8-0310-9f0d-9cc1c95dcdbb
commit dd564f36bd54d4900aefa759bc94cfac7496d1a2
Author: MarcWeber <MarcWeber@70bd8c7a-acb8-0310-9f0d-9cc1c95dcdbb>
Date: Wed Nov 14 19:07:38 2007 +0000
added small script fixing the shebang (#!/bin/...) path.
It searches the PATH env variable for the same executable.
git-svn-id: https://svn.cs.uu.nl:12443/repos/trace/nixpkgs/trunk@9667 70bd8c7a-acb8-0310-9f0d-9cc1c95dcdbb
commit 2f9213e49fbaa40634ccb9699e44aec239212aea
Author: raskin <raskin@70bd8c7a-acb8-0310-9f0d-9cc1c95dcdbb>
Date: Wed Nov 14 01:20:17 2007 +0000
Now SVN Nix builds as a purely alternative Nix choice
git-svn-id: https://svn.cs.uu.nl:12443/repos/trace/nixpkgs/trunk@9666 70bd8c7a-acb8-0310-9f0d-9cc1c95dcdbb
commit 016b6bfcc67244964251d68d86e1fa6de2062e54
Author: raskin <raskin@70bd8c7a-acb8-0310-9f0d-9cc1c95dcdbb>
Date: Tue Nov 13 15:52:16 2007 +0000
Added possibility to use non-default Nix.
git-svn-id: https://svn.cs.uu.nl:12443/repos/trace/nixpkgs/trunk@9663 70bd8c7a-acb8-0310-9f0d-9cc1c95dcdbb
commit 89f53d7b8dae8d4ec537322340be212602524102
Author: MarcWeber <MarcWeber@70bd8c7a-acb8-0310-9f0d-9cc1c95dcdbb>
Date: Tue Nov 13 01:26:54 2007 +0000
implemented proposal by niksnut.
Now you have to use either date= or tag= when specifying cvs revision
git-svn-id: https://svn.cs.uu.nl:12443/repos/trace/nixpkgs/trunk@9661 70bd8c7a-acb8-0310-9f0d-9cc1c95dcdbb
commit ced4ab4c8b5750a0f0a6a685830c8cb5340b6d52
Author: eelco <eelco@70bd8c7a-acb8-0310-9f0d-9cc1c95dcdbb>
Date: Mon Nov 12 16:45:47 2007 +0000
* Symlink $out/bin to $out/libexec.
git-svn-id: https://svn.cs.uu.nl:12443/repos/trace/nixpkgs/trunk@9659 70bd8c7a-acb8-0310-9f0d-9cc1c95dcdbb
commit d454ab8861882e18ed3b79287727890ec6668455
Author: raskin <raskin@70bd8c7a-acb8-0310-9f0d-9cc1c95dcdbb>
Date: Mon Nov 12 16:42:13 2007 +0000
Beta-version of builderDefs fixes.
git-svn-id: https://svn.cs.uu.nl:12443/repos/trace/nixpkgs/trunk@9657 70bd8c7a-acb8-0310-9f0d-9cc1c95dcdbb
commit 959e395c49753d902201d457cee102b40608d3f9
Author: urkud <urkud@70bd8c7a-acb8-0310-9f0d-9cc1c95dcdbb>
Date: Mon Nov 12 16:12:50 2007 +0000
djview location corrected
git-svn-id: https://svn.cs.uu.nl:12443/repos/trace/nixpkgs/trunk@9655 70bd8c7a-acb8-0310-9f0d-9cc1c95dcdbb
commit 52530f607a15017e94225ee50e2698963325ed80
Author: eelco <eelco@70bd8c7a-acb8-0310-9f0d-9cc1c95dcdbb>
Date: Mon Nov 12 13:51:46 2007 +0000
* Revert the setup hook changes on the trunk (but they remain on the
stdenv-updates branch).
git-svn-id: https://svn.cs.uu.nl:12443/repos/trace/nixpkgs/trunk@9652 70bd8c7a-acb8-0310-9f0d-9cc1c95dcdbb
commit 977bdfec49557f48bc1e121e3375c21d4991434f
Author: skolthof <skolthof@70bd8c7a-acb8-0310-9f0d-9cc1c95dcdbb>
Date: Mon Nov 12 13:48:33 2007 +0000
* added Haskell package gtk2hs
git-svn-id: https://svn.cs.uu.nl:12443/repos/trace/nixpkgs/trunk@9651 70bd8c7a-acb8-0310-9f0d-9cc1c95dcdbb
svn path=/nixpkgs/branches/stdenv-updates/; revision=9727
2007-11-16 21:05:15 +00:00
Yury G. Kudryashov
df71193509
gdb upgraded
...
svn path=/nixpkgs/trunk/; revision=9725
2007-11-16 17:30:34 +00:00
Eelco Dolstra
3b1aac231b
* Binutils 2.18.
...
svn path=/nixpkgs/branches/stdenv-updates/; revision=9656
2007-11-12 16:17:54 +00:00
Eelco Dolstra
7a424b47f6
* Revert the setup hook changes on the trunk (but they remain on the
...
stdenv-updates branch).
svn path=/nixpkgs/trunk/; revision=9652
2007-11-12 13:51:46 +00:00
Yury G. Kudryashov
d7db21e72a
pkg-config builder deleted
...
svn path=/nixpkgs/trunk/; revision=9648
2007-11-11 20:41:05 +00:00
Yury G. Kudryashov
abfe41230a
Bug in pkg-config fixed (it was created in my prev. commit
...
svn path=/nixpkgs/trunk/; revision=9647
2007-11-11 20:40:48 +00:00
Yury G. Kudryashov
16b44ea14d
Some setup-hooks with new syntax; pkgconfig upgraded to 0.22
...
svn path=/nixpkgs/trunk/; revision=9645
2007-11-11 20:32:43 +00:00
Michael Raskin
a8db1746a5
Fixed log nesting; added Qi.
...
svn path=/nixpkgs/trunk/; revision=9601
2007-11-08 14:34:54 +00:00
Michael Raskin
7b1c9a7a82
Added Compiz Fusion (main plugins). Also some dependencies, and made wmii build under setup-new-2.sh also.
...
svn path=/nixpkgs/trunk/; revision=9577
2007-11-05 08:32:20 +00:00
Michael Raskin
f723c676b8
Added ltrace - library call tracer. Note that it needed adding an extension point to doUnpack, but it doesn't force full rebuild of everything using builder composing.
...
svn path=/nixpkgs/trunk/; revision=9574
2007-11-03 08:19:00 +00:00
Michael Raskin
3dc3021d01
Renamed replace executable to replace-literal (Yurii Kudryashov noticed conflict with MySQL)
...
svn path=/nixpkgs/trunk/; revision=9376
2007-09-27 14:48:09 +00:00
Yury G. Kudryashov
b6b6888765
cmake hooks changed
...
svn path=/nixpkgs/trunk/; revision=9349
2007-09-20 19:27:55 +00:00
Armijn Hemel
ef783b3c88
update to 4.11
...
svn path=/nixpkgs/trunk/; revision=9322
2007-09-15 23:54:01 +00:00
Eelco Dolstra
ea9667ab18
* Fixed some more URLs.
...
svn path=/nixpkgs/trunk/; revision=9294
2007-09-11 11:15:37 +00:00
Eelco Dolstra
e68cfbe1b4
* Symlink to the lib/ and etc/ directories of the real Ant,
...
OpenOffice needs that.
svn path=/nixpkgs/trunk/; revision=9261
2007-09-06 15:30:38 +00:00