1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
Commit graph

63513 commits

Author SHA1 Message Date
Tuomas Tynkkynen c0aada1e1f rpm: Hack fix finding libpython when compiling for Python 3
Currently, building RPM with `python = python3` causes this:

checking for a Python interpreter with version >= 2.6... python3
checking for python3... /nix/store/dykqxnrwiz9drlcv2wy8lpvl3xvklx0g-python3-3.4.3/bin/python3
checking for python3 version... 3.4
checking for Python.h... yes
checking for library containing Py_Main... no
configure: error: missing python library

That comes from this snippet in configure.ac:
    AC_SEARCH_LIBS([Py_Main],[python${PYTHON_VERSION} python],[
      WITH_PYTHON_LIB="$ac_res"
    ],[AC_MSG_ERROR([missing python library])
    ])

So it's looking for (e.g) `libpython3.4.so` wheras we have `libpython3.4m.so`.
Patching the configure script to match seems to make that work (although
I don't really understand what the heck is this 'm' business about).
2015-12-28 02:16:23 +02:00
Pascal Wittmann 83c22f9c8f Merge pull request #11547 from sigma/corkscrew
add corkscrew networking tool
2015-12-08 17:47:46 +01:00
Ricardo M. Correia c3be340ae0 handbrake: fix compilation due to missing dep 2015-12-08 17:30:25 +01:00
Nikolay Amiantov a70efc1ecd Merge pull request #11541 from bendlas/update-wine
wine unstable: 1.8-rc2 -> 1.8-rc3
2015-12-08 19:00:05 +03:00
Yann Hodique e0fe879562 corkscrew: init at 2.0 2015-12-08 07:28:56 -08:00
Nikolay Amiantov b6c9ce9b03 nethack: fix the last-minute fix 2015-12-08 18:10:53 +03:00
Nikolay Amiantov 459a5c5803 nethack: 3.4.3 -> 3.6.0
I think a decade has passed ^_^
2015-12-08 17:52:09 +03:00
Domen Kožar 3b020106f8 Merge pull request #11551 from hrdinka/add/tilestache
python tilestache: init at 1.50.1
2015-12-08 13:58:08 +01:00
Thomas Tuegel 30ef1db5fe Merge branch 'kdelibs-upnp' 2015-12-08 06:29:02 -06:00
Arseniy Seroka c5a289e0eb Merge pull request #11544 from NeQuissimus/kotlin-3595
kotlin: 1.0.0-beta-3594 -> 1.0.0-beta-3595
2015-12-08 15:27:19 +03:00
Thomas Tuegel 868a813368 kdelibs: disable UPnP
kdelibs' UPnP implementation is unsupported upstream:
https://lists.ubuntu.com/archives/kubuntu-devel/2014-February/007891.html
2015-12-08 06:21:36 -06:00
Christoph Hrdinka 5a26cfc27f python tilestache: init at 1.50.1 2015-12-08 13:10:31 +01:00
Domen Kožar 27bea9a3aa Merge pull request #11536 from bendlas/update-i2p
i2p: 0.9.22 -> 0.9.23
2015-12-08 10:34:11 +01:00
Domen Kožar 6edd9e5e1a Merge pull request #11526 from mcmtroffaes/feature/partclone-fix
partclone: fix sha256 and buildInputs
2015-12-08 10:21:28 +01:00
Rok Garbas 7e2a828fd6 python35: 3.5.0 -> 3.5.1 2015-12-08 04:35:17 +01:00
Rok Garbas 124e70a459 python27: 2.7.10 -> 2.7.11 2015-12-08 04:35:17 +01:00
aszlig c00feace39
linux-testing: 4.4.0-rc3 -> 4.4.0-rc4
Upstream changes can be found at:

https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/log/?id=v4.4-rc4

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2015-12-08 03:51:34 +01:00
Tim Steinbach 85c051b2f3 kotlin: 1.0.0-beta-3594 -> 1.0.0-beta-3595 2015-12-08 02:34:09 +00:00
Tobias Geerinckx-Rice dfb31c3262 cassandra 2.1.11 -> 2.1.12 2015-12-08 03:04:31 +01:00
Herwig Hochleitner 58ba1d5bd3 leiningen: 2.5.2 -> 2.5.3, fixes #11537 2015-12-08 02:58:33 +01:00
aszlig 6945557dba
ruby: Fix SHA256 hashes of several versions.
According to @zimbatm, he got the SHA256 hashes via nix-prefetch-git.

However, fetchFromGitHub doesn't use Git to fetch the sources but uses
fetchzip under the hood, so we get plain source directories in the Nix
store, which in turn are hashed.

Tested by:

nix-build --no-out-link -E 'map (x:
    (builtins.getAttr x (import ./.  {})).src
) [ "ruby_1_9_3" "ruby_2_0_0" "ruby_2_1_0" "ruby_2_1_1" "ruby_2_1_2"
    "ruby_2_1_3" "ruby_2_1_6" "ruby_2_1_7" "ruby_2_2_0" "ruby_2_2_2"
    "ruby_2_2_3"
]'

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2015-12-08 02:56:29 +01:00
Herwig Hochleitner a7aaedebcc dropbox-cli: 2015.02.12 -> 2015.10.28, fixes #11538 2015-12-08 02:13:11 +01:00
Herwig Hochleitner 0c30a14b9d dropbox: 3.10.11 -> 3.12.4 2015-12-08 02:12:47 +01:00
zimbatm 8111e1c902 go: 1.5.1 -> 1.5.2, fixes #11498 2015-12-08 02:09:59 +01:00
Pascal Wittmann b843e7c50a libtorrent: fix evaluation 2015-12-07 22:39:39 +01:00
Peter Simons a0cdd48171 rtorrent: fix meta.homepage attribute 2015-12-07 22:30:55 +01:00
Herwig Hochleitner be80ba2c96 wine unstable: 1.8-rc2 -> 1.8-rc3 2015-12-07 22:22:56 +01:00
Herwig Hochleitner ca659e0e89 i2p: 0.9.22 -> 0.9.23 2015-12-07 21:45:09 +01:00
Eelco Dolstra 1da87d4062 systemd: Update to 228 2015-12-07 20:25:53 +01:00
Gabriel Ebner f4c01fc004 systemd: enable timedated, hostnamed, localed. 2015-12-07 20:25:53 +01:00
Shea Levy 4212d8facb Merge branch 'mariadb-10.1.9' of git://github.com/ryantrinkle/nixpkgs 2015-12-07 13:43:49 -05:00
Ryan Trinkle 5729cf7714 mariadb: 10.1.8 -> 10.1.9
Fixes build on darwin; might be related to https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=777996;msg=2
2015-12-07 13:21:25 -05:00
Peter Simons 8dd80d7055 Merge pull request #11531 from oxij/rtorrent-merge-and-cleanup
libtorrent, rtorrent: merge *-git into default, drop outdated *-git versions, cleanup
2015-12-07 19:01:52 +01:00
Jan Malakhovski 7afce99e61 libtorrent, rtorrent: merge *-git into default, drop outdated *-git versions, cleanup
This also gives the man page (it is outdated, though).
2015-12-07 17:56:03 +00:00
Matthias C. M. Troffaes 0d3db2477b partclone: fix build - requires automake and autoconf 2015-12-07 15:14:45 +00:00
Matthias C. M. Troffaes e8d97ef4f5 partclone: use fetchFromGitHub and fix sha256 2015-12-07 15:14:44 +00:00
zimbatm f399ab50d8 ruby: update railsexpress patchsets, fixes #11347 2015-12-07 15:37:55 +01:00
zimbatm 7c338ffb77 ruby_2_2: 2.2.2 -> 2.2.3 2015-12-07 15:37:33 +01:00
zimbatm d9f0568ccb ruby_2_1: 2.1.6 -> 2.1.7 2015-12-07 15:37:33 +01:00
zimbatm 9ebc399432 ruby_2_0: 2.0.0p645 -> 2.0.0p647 2015-12-07 15:37:33 +01:00
Desmond O. Chang 700835bb45 yank: 0.4.1 -> 0.6.0, fixes #11522 2015-12-07 15:25:50 +01:00
Ambroz Bizjak 067141621e virtualboxGuestAdditions: Add missing library paths to patchelf, fixes #11509 2015-12-07 15:15:03 +01:00
Teo Klestrup Röijezon 53441bcc93 nginx: 1.9.4 -> 1.9.7, fixes #11515 2015-12-07 14:56:27 +01:00
Ambroz Bizjak b9093f1c64 chromium: Updates, fixes #11492
Built and run Beta and Stable locally. Dev is surrently superseded by Stable so
it doesn't matter much.

- Dev: 47.0.2508.0 -> 48.0.2564.22
- Beta: 46.0.2490.64 -> 48.0.2564.23
- Stable: 45.0.2454.101 -> 47.0.2526.73

Changed the SSL dependencies to the supported configuration on Linux (according
to Torne @Freenode/#chromium-support).

- NSS is a dependency since it is used to access the ceritiface store.
- Dropped system OpenSSL support, the bundled BoringSSL is used.

This probably fixes issue #10555. Note that without this adjustment the build
fails even.

Dropped uneeded old patches.
2015-12-07 14:52:15 +01:00
Thomas Tuegel ace303f79c emacsPackagesNg: pass melpaBuild, trivialBuild to packages 2015-12-07 06:28:56 -06:00
Thomas Tuegel 916f86745e Merge branch 'elpa-packages' 2015-12-07 06:24:34 -06:00
Thomas Tuegel 4b950d233e ipe: 7.1.8 -> 7.1.10 2015-12-07 05:50:02 -06:00
Matthias C. M. Troffaes 0a9b784acc namecoin: fix sha256 using fetchzip 2015-12-07 10:45:28 +00:00
Domen Kožar 8c65e4e82a Merge pull request #11519 from mcmtroffaes/feature/cbatticon-sha256-fix
cbatticon: fix sha256 mismatch
2015-12-07 11:26:29 +01:00
Matthias C. M. Troffaes 9b2d64f310 cbatticon: use fetchzip to fix sha256 issues 2015-12-07 10:24:38 +00:00