summary refs log tree commit diff
path: root/pkgs
Commit message (Collapse)AuthorAge
* logrotate: update from 3.8.3 to 3.8.7Nixpkgs Monitor2014-01-13
|
* ipmitool: update from 1.8.11 to 1.8.13Nixpkgs Monitor2014-01-13
|
* dos2unix: update from 6.0.3 to 6.0.4Nixpkgs Monitor2014-01-13
|
* i3status: update from 2.7 to 2.8Nixpkgs Monitor2014-01-13
|
* gource: update to version 0.40Peter Simons2014-01-13
|
* Un-maintain wine.Peter Simons2014-01-13
|
* maude: cosmeticPeter Simons2014-01-13
|
* tecla: update to version 1.6.2Peter Simons2014-01-13
|
* swi-prolog: update to version 6.6.1Peter Simons2014-01-13
|
* ratpoison: update to version 1.4.6Peter Simons2014-01-13
|
* pigz: update to version 2.3.1Peter Simons2014-01-13
|
* pdsh: update to version 2.29Peter Simons2014-01-13
|
* maxima: update to version 5.32.1Peter Simons2014-01-13
|
* lzip: update to version 1.15Peter Simons2014-01-13
|
* ikiwiki: update to version 3.20140102Peter Simons2014-01-13
|
* gnucash: update to version 2.4.15Peter Simons2014-01-13
|
* gocr: update to version 0.50Peter Simons2014-01-13
|
* all-packages.nix: strip trailing whitespacePeter Simons2014-01-13
|
* duplicity: update to version 0.6.22Peter Simons2014-01-13
|
* gmp: update 5.1.x branch to version 5.1.3Peter Simons2014-01-13
|
* fetchmail: update to version 6.3.26Peter Simons2014-01-13
|
* emacs24Packages.haskellMode: update from 13.07 to 13.10Nixpkgs Monitor2014-01-13
|
* cppcheck: update from 1.62 to 1.63Nixpkgs Monitor2014-01-13
|
* automake114x: update from 1.14 to 1.14.1Nixpkgs Monitor2014-01-13
|
* audacious: update from 3.4.1 to 3.4.3Nixpkgs Monitor2014-01-13
|
* fail2ban: update from 0.8.10 to 0.8.11Nixpkgs Monitor2014-01-13
|
* mercurial: update from 2.8.1 to 2.8.2Nixpkgs Monitor2014-01-13
|
* e2fsprogs: update from 1.42.8 to 1.42.9Nixpkgs Monitor2014-01-13
|
* cppunit: Support DarwinEelco Dolstra2014-01-13
|
* xerces-c: Add to channelEelco Dolstra2014-01-13
|
* iOS keyfile means provisioning profileSander van der Burg2014-01-13
|
* Minor android version fixSander van der Burg2014-01-13
|
* Fix emulate android jobSander van der Burg2014-01-13
|
* Make xcode version configurable + fix android emulator testsSander van der Burg2014-01-13
|
* Make xcode version configurableSander van der Burg2014-01-13
|
* Removed old SDK version support and updated kitchensink versionSander van der Burg2014-01-13
|
* Removed titanium SDK 2.1, since it's deprecated long ago and no longer works ↵Sander van der Burg2014-01-13
| | | | with the new Android SDK
* Fixed xcode patch to make nodejs work on darwin againSander van der Burg2014-01-13
|
* Add two additional API level compositionsSander van der Burg2014-01-13
|
* Added titanium nodejs packageSander van der Burg2014-01-13
|
* Merge branch 'java'Eelco Dolstra2014-01-13
|\
| * clojure: Don't create $out/bin/javaEelco Dolstra2014-01-13
| |
| * apacheAntGcj: RemoveEelco Dolstra2014-01-09
| | | | | | | | | | No need to keep two different versions of Ant around. The default Ant works fine with GCJ (and doesn't pull in OpenJDK).
| * Replace lib/java -> share/javaEelco Dolstra2014-01-09
| |
| * openjdk: Set JAVA_HOME in a setup-hookEelco Dolstra2014-01-09
| |
| * ant: Support the OpenJRE (without OpenJDK) and the GNU JVMEelco Dolstra2014-01-09
| | | | | | | | | | | | | | | | | | | | | | | | | | For instance, a package can now say: buildInputs = [ ant jre ecj ]; which would cause the Eclipse compiler to be used with the OpenJRE. Similarly: buildInputs = [ ant gcj ]; uses the GNU JVM with the GNU Java compiler.
| * ecj: Add a setup hook that makes Ant use ECJ automaticallyEelco Dolstra2014-01-06
| |
| * openjre: Propagate setJavaClassPathEelco Dolstra2014-01-06
| | | | | | | | | | Thus, any package that has the JRE or JDK in its build inputs will automatically have $CLASSPATH set up properly.
| * Add a setup hook that automatically sets up $CLASSPATHEelco Dolstra2014-01-06
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | All JARs in $pkg/share/java (for each $pkg in the build inputs) are added to $CLASSPATH. Thus, you can say buildInputs = [ setJavaClassPath someJavaDependency ]; and the JARs in someJavaDependency will be found automatically by tools like javac or ant. Note that the manual used to say that JARs should be installed in lib/java; this is now share/java, following the Debian policy: http://www.debian.org/doc/packaging-manuals/java-policy/x110.html The directory share/java makes more sense because JARs are architecture-independent. (Also, a quick grep shows that we were not exactly consistent about this in Nixpkgs.)
| * ant: Add to the channelEelco Dolstra2014-01-06
| |