about summary refs log tree commit diff
path: root/pkgs/test
Commit message (Collapse)AuthorAge
* treewide: Use `*Platform.extensions`John Ericson2017-09-13
|
* nixpkgs-tests: add basic test for buildInputsDaiderd Jordan2017-09-10
|
* nixpkgs-tests: add basic test for cc-wrapperDaiderd Jordan2017-09-10
|
* macos-sierra-shared: Make live code and add to nascent Darwin channelJohn Ericson2017-07-31
| | | | Also add appropriate `meta.platforms = ...` to each derivation.
* cc-wrapper-test: Use `$CXX` else the C++ std lib won't be on the include pathJohn Ericson2017-07-31
|
* cc-wrapper-test: Don't use assertJohn Ericson2017-07-31
|
* cc-wrapper-test: Forgot to `extern "C"` now that main is C++John Ericson2017-07-31
|
* cc-wrapper: Beef up sierra tests to actually use functionsJohn Ericson2017-07-31
|
* cc-wrapper: WIP linking hack for mac OSJohn Ericson2017-07-31
| | | | | Probably best to override Haskell packages set, or anything else linking a lot of libraries, with this.
* Remove cruftEelco Dolstra2016-04-26
|
* Merge branch 'master' into closure-sizeVladimír Čunát2016-04-01
|\ | | | | | | | | Beware that stdenv doesn't build. It seems something more will be needed than just resolution of merge conflicts.
| * Replace references to all-packages.nix, by references to the top-level of ↵Nicolas B. Pierron2016-03-13
| | | | | | | | nixpkgs repository.
* | curl: split into multiple outputsVladimír Čunát2015-10-13
|/ | | | Also use pkgconfig to be safer and fix (some) referrers.
* s/dependancy/dependency/Mateusz Kowalczyk2014-09-10
|
* Add a new way to handle option sets.Nicolas Pierron2008-08-05
| | | | svn path=/nixpkgs/trunk/; revision=12505
* Missing gecko now.Wouter den Breejen2007-11-16
| | | | svn path=/nixpkgs/trunk/; revision=9715
* libnotify is missingWouter den Breejen2007-11-16
| | | | svn path=/nixpkgs/trunk/; revision=9711
* Added openftd. Doesnt work (yet)Wouter den Breejen2007-11-16
| | | | svn path=/nixpkgs/trunk/; revision=9708
* * Moved hsqldb.Eelco Dolstra2007-09-11
| | | | svn path=/nixpkgs/trunk/; revision=9293
* hsqldb: Forgot these 2Wouter den Breejen2007-09-06
| | | | svn path=/nixpkgs/trunk/; revision=9264
* * "." -> "source".Eelco Dolstra2005-12-05
| | | | svn path=/nixpkgs/trunk/; revision=4335
* * Ensure that when building gcc, libstdc++ is linked against theEelco Dolstra2004-04-04
| | | | | | | | | | | | | | | libgcc of the gcc being built, not the gcc building it. * Only include a directory in the rpath of an executable/library if it is actually used. Before, the `/lib' directory of every build input was added to the rpath, causing many unnecessary retained dependencies. For instance, Perl has a `/lib' directory, but most applications whose build process uses Perl don't actually link against Perl. (Also added a test for this.) * After building glibc, remove glibcbug, to prevent a retained dependency on gcc. * Add a newline after `building X' in GNU Make. svn path=/nixpkgs/trunk/; revision=911
* * Finally we have a working stdenvLinux again.Eelco Dolstra2004-03-30
| | | | | | | On the downside, the build process of stdenvLinux builds gcc 9 times (3 x 3 bootstrap stages). That's a bit excessive. svn path=/nixpkgs/trunk/; revision=880
* * Remove trivial builders.Eelco Dolstra2004-03-29
| | | | | | | | | | | | * Make builders unexecutable by removing the hash-bang line and execute permission. * Convert calls to `derivation' to `mkDerivation'. * Remove `system' and `stdenv' attributes from calls to `mkDerivation'. These transformations were all done automatically, so it is quite possible I broke stuff. * Put the `mkDerivation' function in stdenv/generic. svn path=/nixpkgs/trunk/; revision=874
* * Re-enabled purity checking: it should work now. First we onlyEelco Dolstra2004-03-12
| | | | | | | | | | | | | | checked whether absolute paths passed to gcc/ld refer to the store, which is wrong: they can also refer to the build tree (/tmp/nix-...). * Less static composition in the construction of stdenv-nix-linux: gcc-wrapper and generic are now passed in as arguments, rather then referenced by relative path. This makes it easier to hack on a specific stage of the bootstrap process (before, a change to, e.g., generic/setup.sh would cause all bootstrap stages to be redone). svn path=/nixpkgs/trunk/; revision=833
* * Finally got stdenv-nix-linux working again. Still not perfect,Eelco Dolstra2004-03-11
| | | | | | | | though. * libxml2: upgrade to latest. * octavefront/rna: keep debug info. svn path=/nixpkgs/trunk/; revision=830
* * stdenv-nix-linux should more-or-less work again now.Eelco Dolstra2004-03-09
| | | | svn path=/nixpkgs/trunk/; revision=826
* * gcc-wrapper now filters out -L and -I flags referring to pathsEelco Dolstra2004-03-08
| | | | | | outside the store (in pure builds). svn path=/nixpkgs/trunk/; revision=817
* * Started reorganising stdenv:Eelco Dolstra2004-03-08
- gcc/ld-wrappers have been factored out into a separate derivation. This allows a working gcc to be installed in the user environment. (Previously the Nix gcc didn't work because it needed a whole bunch of flags to point to glibc.) - Better modularity: packages can specify hooks into the setup scripts. For instance, setup no longer knows about the PKG_CONFIG_PATH variable; pkgconfig can set it up instead. - gcc not longer depends on binutils. This simplifies the bootstrap process. svn path=/nixpkgs/trunk/; revision=816