Domen Kožar
1029db9024
buildPythonPackage: fix do_conflict.py on python 3
2015-11-21 21:44:12 +01:00
Domen Kožar
a912c45ee2
buildPythonPackage: get rid of setupPyInstallFlags since there is no such thing
2015-11-21 21:44:12 +01:00
Domen Kožar
42acb5dc55
buildPythonPackage: fix pypy
2015-11-21 21:44:12 +01:00
Herwig Hochleitner
481a9ada06
pypy: 2.6.0 -> 4.0.0
2015-11-21 21:44:12 +01:00
Domen Kožar
d0809c2925
setuptools: cleanup expression
2015-11-21 21:44:12 +01:00
Domen Kožar
f900231042
buildPythonPackage: fail if two packages with the same name are in closure
2015-11-21 21:44:12 +01:00
Domen Kožar
f3092d6446
buildPythonPackage: use a separate file to fire off setup.py
2015-11-21 21:44:12 +01:00
Domen Kožar
960274fc7c
wrapPython: use $out/bin also for $PATH (fixes pyramid pserve --reload)
2015-11-21 21:44:12 +01:00
Domen Kožar
a2a6f60b5a
WIP: buildPythonPackages now uses wheels internally
2015-11-21 21:44:12 +01:00
Domen Kožar
fc2874d02e
pypy: use the official sitePackages install path
2015-11-21 21:44:12 +01:00
Bart Brouns
3387fb4b1f
emscripten and emscripten-fastcomp: add platforms
...
Close #11068 .
2015-11-21 14:12:57 +01:00
Vincent Laporte
2bc3965bb7
coq-ext-lib: 1.0.0-beta2 -> 0.9.0-beta3
2015-11-21 04:18:14 +01:00
Brandon Martin
e32defcdac
elmPackages update from 0.15.1 to 0.16
2015-11-20 10:14:49 -07:00
Shea Levy
df9f0d7060
nix-exec: 4.1.2 -> 4.1.3 bugfix release
2015-11-20 09:16:35 -05:00
Pascal Wittmann
35f32d0fda
Merge pull request #10971 from ericbmerritt/trv-package
...
trv: init at 0.1.3
2015-11-20 14:26:24 +01:00
Vladimír Čunát
3c397e8ec8
taglib: bring back 1.9 to fix kde4.kdemultimedia
...
/cc #11097 .
2015-11-20 10:44:00 +01:00
Vladimír Čunát
48409bd3f4
mediastreamer: work around a build problem
...
The new deprecation was most likely triggered by ffmpeg update to 2.8.*
2015-11-20 09:11:13 +01:00
Cillian de Róiste
5823ff2a92
nodejs: remove myself from the maintainers
2015-11-19 22:32:43 +01:00
Peter Simons
a779b57153
configuration-hackage2nix.yaml: update list of broken builds
2015-11-19 10:56:58 +01:00
Peter Simons
3d9e83761e
hackage-packages.nix: update Haskell package set
...
This update was generated by hackage2nix v20150922-44-g2042044 using the following inputs:
- Nixpkgs: https://github.com/NixOS/nixpkgs/commit/8d34a1fc4bfcddbb1cc10d70958293e9e3b16298
- Hackage: https://github.com/commercialhaskell/all-cabal-hashes/commit/770d6964c53cbf749adf3b8984b6a49700bb9db0
- LTS Haskell: https://github.com/fpco/lts-haskell/commit/8ec1fc34193fe53e8e257219cb2e4618f82cade5
- Stackage Nightly: https://github.com/fpco/stackage-nightly/commit/5236aaf5765a4a921ddc92b1e217e882b7b2f8cf
2015-11-19 10:56:52 +01:00
vbgl
204685be82
Merge pull request #11024 from osener/closure-compiler-20151015
...
closure-compiler: 20150609 -> 20151015
2015-11-19 08:53:09 +01:00
Peter Simons
d7e6a46770
r-modules: update list of broken builds to avoid Hydra errors
2015-11-18 15:23:46 +01:00
Pascal Wittmann
dd81844322
Merge pull request #11120 from vizanto/pr-boot
...
boot: 2.2.0 -> 2.4.2
2015-11-18 13:39:24 +01:00
Danny Wilson
1ebc5bfa21
boot: 2.2.0 -> 2.4.2
2015-11-18 11:48:04 +01:00
Pascal Wittmann
c283a3da68
Replace 'with plaforms; platform' with 'platforms.platform'
2015-11-18 11:34:09 +01:00
William A. Kennington III
357e471d56
rocksdb: 4.0 -> 4.1
2015-11-17 21:12:49 -08:00
Ricardo M. Correia
2b694c237b
cargo, cargoSnapshot: add rustc runtime dependency
...
It turns out that cargo implicitly depends on rustc at runtime: even
`cargo help` will fail if rustc is not in the PATH.
This means that we need to wrap the cargo binary to add rustc to PATH.
However, I have opted into doing something slightly unusual: instead of
tying down a specific cargo to use a specific rustc (i.e., wrap cargo so
that "${rustc}/bin" is prefixed into PATH), instead I'm adding the rustc
used to build cargo as a fallback rust compiler (i.e., wrap cargo so
that "${rustc}/bin" is suffixed into PATH). This means that cargo will
prefer to use a rust compiler that is in the default path, but fallback
into the one used to build cargo only if there wasn't any rust compiler
in the default path.
The reason I'm doing this is that otherwise it could cause unexpected
effects. For example, if you had a build environment with the
rustcMaster and cargo derivations, you would expect cargo to use
rustcMaster to compile your project (since rustcMaster would be the only
compiler available in $PATH), but this wouldn't happen if we tied down
cargo to use the rustc that was used to compile it (because the default
cargo derivation gets compiled with the stable rust compiler).
That said, I have slightly modified makeRustPlatform so that a rust
platform will always use the rust compiler that was used to build cargo,
because this prevents mistakenly depending on two different versions of
the rust compiler (stable and unstable) in the same rust platform,
something which is usually undesirable.
Fixes #11053
2015-11-18 02:41:45 +01:00
Pascal Wittmann
7fd2796e99
Replace 'with plaforms; platform' with 'platforms.platform'
2015-11-17 21:30:43 +01:00
Luca Bruno
db4e688df2
git2: fix libssh support
2015-11-17 17:55:20 +01:00
Jaka Hudoklin
be067811ff
Merge pull request #11048 from offlinehacker/pkgs/influxdb/update_0.9.4
...
influxdb: 0.8.3 -> 0.9.4, fix module
2015-11-17 17:18:24 +01:00
Michel Kuhlmann
cab1f3de5e
R: regenerate CRAN packages
2015-11-17 14:34:27 +01:00
Vladimír Čunát
31aa281919
libpng12: security update 1.2.53 -> 1.2.54
...
Part of fix for #11030 .
Also refactor meta.
2015-11-17 12:57:33 +01:00
Peter Simons
2d87d483d0
configuration-hackage2nix.yaml: update list of broken packages
2015-11-17 11:09:59 +01:00
Peter Simons
4fb7b4170a
hackage-packages.nix: update Haskell package set
...
This update was generated by hackage2nix v20150922-42-g3ca1747 using the following inputs:
- Nixpkgs: https://github.com/NixOS/nixpkgs/commit/ad0723f0c71afc7b5e86eba1958aed0fd5761c95
- Hackage: https://github.com/commercialhaskell/all-cabal-hashes/commit/c7478af457cffe9194a43314b6c0fded1546b275
- LTS Haskell: https://github.com/fpco/lts-haskell/commit/8ec1fc34193fe53e8e257219cb2e4618f82cade5
- Stackage Nightly: https://github.com/fpco/stackage-nightly/commit/e6bcfb640c367a777c0b398240fe58ef20d141c8
2015-11-17 11:09:09 +01:00
Domen Kožar
f809e8e0ab
webkitgtk: 2.10.0 -> 2.10.4 (fix build)
2015-11-17 08:19:01 +01:00
Domen Kožar
0ff2240da3
Merge pull request #11078 from svend/nim-darwin
...
nim: Add darwin platform
2015-11-17 01:06:02 +01:00
Svend Sorensen
d4994d85e4
nim: Add darwin platform
2015-11-16 14:50:40 -08:00
lethalman
ca186286d7
Merge pull request #10986 from teh/master
...
update flow + new go binary (codesearch)
2015-11-16 20:45:10 +01:00
Sander van der Burg
a06dd213b6
nodejs-5_0: add package
2015-11-16 17:58:11 +00:00
Stefan Junker
63edfb1871
go14: 1.4.2 -> 1.4.3 ( close #10702 )
2015-11-16 16:39:08 +01:00
Arseniy Seroka
aca3377672
Merge pull request #11028 from ryantrinkle/hmatrix-darwin
...
Add Accelerate framework dependency to hmatrix on darwin
2015-11-16 18:19:25 +03:00
Jaka Hudoklin
9c1943fb6f
influxdb: 0.8.3 -> 0.9.4, fix module
2015-11-16 14:22:08 +01:00
Domen Kožar
0b4776b6b7
Merge pull request #9182 from greedy/erlang-setup-hook
...
erlang: add setupHook to set ERL_LIBS
2015-11-16 13:09:26 +01:00
Domen Kožar
5ca01c71d1
Merge pull request #10814 from NarrativeScience/no_large_file_test
...
numpy: patch to remove large file test
2015-11-16 12:55:13 +01:00
Domen Kožar
4755afc385
Merge commit 'b666ac3e9ff3f08b120d068770768be580e67f76' (staging)
...
Merge rest of the fixes from staging
2015-11-16 11:23:06 +01:00
Peter Simons
731965eb24
Merge pull request #10967 from sjourdois/cracklib
...
cracklib: 2.9.4 -> 2.9.6
2015-11-16 11:09:04 +01:00
Peter Simons
2025ed52a0
Merge pull request #10987 from mcmtroffaes/feature/libssh2-mingw
...
libssh2: fix shared library build under mingw
2015-11-16 11:05:45 +01:00
Ryan Trinkle
90d5d315af
hmatrix: fix missing Accelerate framework dependency on darwin
2015-11-15 14:57:58 -05:00
Florent Becker
7ff5826e08
kcov : init at 29
2015-11-15 18:07:48 +01:00
Domen Kožar
b666ac3e9f
Revert "python: skip build at install phase"
...
This reverts commit d34f5b6570 .
PIL and NumPy don't like this change and I'd rather spend time on
bringing wheels to Nix than fixing old infrastructure.
2015-11-15 13:50:04 +01:00