1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-02-17 16:40:12 +00:00
Commit graph

22394 commits

Author SHA1 Message Date
Nicolas B. Pierron ad31783405 Extract the top-level logic out of all-packages.nix into pkgs/top-level/default.nix 2016-03-20 16:28:18 +00:00
Nicolas B. Pierron a543a57ab5 Reformat pkgsWithOverrides to later facilitate the identitication with the extend functions. 2016-03-20 16:11:52 +00:00
Nicolas B. Pierron 07e549ee5b Rename applyGlobalOverrides to pkgsWithOverrides 2016-03-20 16:11:51 +00:00
Nicolas B. Pierron 32e96bbb8b Within applyGlobalOverrides, alias pkgsFun calls. 2016-03-20 16:11:51 +00:00
Nicolas B. Pierron 5e3ce6334c Remove applyGlobalOverrides's pkgsOrig argument.
This patch change the behaviour or overridePackages:

 - Before, overridePackages was based on top of the set of packages
   overriden by `~/.nixpkgs/config.nix` file.

 - After, overridePackages should when given a function f, behave almost¹
   the same as-if the packageOverrides attribute of `~/.nixpkgs/config.nix`
   file attribute was set to f, assuming that we ignore the extra `self`
   argument.

¹ It is not yet exactly the same because we have many paths which are
re-entering nixpkgs while taking the default attributes, such as the
bootstrap phase of stdenv.  Thus if the nixpkgs configuration overrides any
of the dependencies need for the bootstrap, then we might get different sha.
2016-03-20 16:11:51 +00:00
Nicolas B. Pierron 007500f2ec Move the merge of the overrides from pkgsFun to applyGlobalOverrides. 2016-03-20 16:11:51 +00:00
Nicolas B. Pierron 054327729c Move stdenvDefault into its own file. 2016-03-20 16:11:51 +00:00
Tuomas Tynkkynen ffae496db6 Merge pull request #14070 from ericsagnes/fix/im-engines
im-engines: use recurseIntoAttrs
2016-03-20 18:08:08 +02:00
Nicolas B. Pierron f043ffcea4 Move the set of aliases after 'self', such that we can later use the extend function. 2016-03-20 14:52:28 +00:00
Nicolas B. Pierron a09683ed29 Remove unused 'ncat' alias, as a package with the same name already exists. 2016-03-20 14:51:20 +00:00
Nicolas B. Pierron 0b67f7cb5d Move tweakAlias function into the aliases.nix file, and rename it. 2016-03-20 14:50:27 +00:00
Nicolas B. Pierron f7c86ee018 Move merge of stdenvDefault from the self attribute to the returned value of pkgsFun. 2016-03-20 14:31:27 +00:00
Nicolas B. Pierron be3531a56e Replace with statements of stdenvDefault to rely on pkgs instead of self. 2016-03-20 14:31:27 +00:00
Nicolas B. Pierron 020bb40454 Split stdenv attribute set.
Extract stdenvDefault from the set of all packages.  As this set of
attributes are inter-dependant, probably due to stdenvOverrides, we have to
keep them in a close set of inter-dependent options.

I guess I will have to investigate more ...
2016-03-20 14:31:27 +00:00
Nicolas B. Pierron 7f3a4f4287 Swap conditions of stdenvOverrides to prevent infinite loops while evaluating stdenvCross.
While evaluating the derivation of xbursttools:
  the condition `pkgs.stdenv ? overrides` causes the evaluation of
  `stdenvCross`.  This evaluation comes too early during the execution, as
  it prevents the resolution of names such as `pkgs.lib`, and
  `stdenvAdapaters.makeStdenvCross`, which we want to take from `pkgs`
  instead of `self` in following patches.

By swapping the conditions, we effectively make the resolution of `pkgs.lib`
and `stdenvAdapaters.makeStdenvCross` possible through the pkgs attribute.
2016-03-20 14:31:26 +00:00
Nicolas B. Pierron 8d355b8d85 Under pkgsFun, expand self attribute, and rename self_ to self.
Note, the aliases are now computed against the set of packages defined in
the set of all packages, and no longer apply to any overriden package.

I think this is better as this reduces the amount of surprizes.
2016-03-20 14:31:26 +00:00
Nicolas B. Pierron ffcb6682bc Under pkgsFun, move the merge of helper functions from self_ to self. 2016-03-20 14:31:26 +00:00
Nicolas B. Pierron a658645e1e Remove with helperFunction above the list of all packages.
This modification change the names bound to the `helperFunctions` attribute
set, to be bound to `self` which is constructed by merging the same
`helperFunctions` set with the set of all packages.

This patch works as expected because none of the helperFunction names is
aliased by the name of a package.
2016-03-20 14:31:26 +00:00
Nicolas B. Pierron a8374f2168 Under applyGlobalOverrides, inline mkOverrides in overrides. 2016-03-20 14:31:26 +00:00
Nicolas B. Pierron 71b2fd92b3 Move mkOverrides under applyGlobalOverrides. 2016-03-20 14:31:26 +00:00
Nicolas B. Pierron acaa99cbd2 Move applyGlobalOverrides comment to stdenvOverrides, where it fits better. 2016-03-20 14:31:26 +00:00
Nicolas B. Pierron 00963c3dfd Extract stdenvOverrides function out of mkOverrides function. 2016-03-20 14:31:25 +00:00
Nicolas B. Pierron a5188bda7b Unify the applyGlobalOverride function with the overridePackages function. 2016-03-20 14:31:25 +00:00
Nicolas B. Pierron a6e260c91f Add an extra argument to the overrider function of applyGlobalOverrides. 2016-03-20 14:31:25 +00:00
Nicolas B. Pierron f9a29887fe Move pkgsOrig outside applyGlobalOverrides and provide it as argument. 2016-03-20 14:31:25 +00:00
Nicolas B. Pierron 5f4cb91a1c Move helperfunctions and stdenvAdapters under pkgsFun.
The `helperFunctions` and `stdenvAdapters` both use the `pkgs` attribute as
input, either to inherit some properties, either to use it as argument.

The `pkgs` binding used in both expressions of the `helperFunctions` and
`stdenvAdapters` is no longer the result of the `applyGlobalOverrides`
function, but the argument of the `pkgsFun` function.

The `pkgsFun` functions is called twice under `applyGlobalOverrides`, and in
both cases, the first argument of `pkgsFun` correspond to the result of
`applyGlobalOverrides`.

Thus, this modification will change the bindings, but the evaluation of
`<nixpkgs>`.

A third call the `pkgsFun` exists under `overridePackages` in the set of all
packages. Previously, the `helperFunctions` and `stdenvAdapaters` would use
the functions defined as part of the default `<nixpkgs>` set.  With this
modification, the `helperFunctions` and the `stdenvAdapters` are now using
the fix-point of the newly evaluated package set.

This implies that this modification allow the user to use
`overridePackages`, which is already not recommended for performance
reasons, to override the inputs of the `helperFucntions` and
`stdenvAdapaters` too, where this was not possible before.
2016-03-20 14:31:25 +00:00
Nicolas B. Pierron 11a566b5bc Move 'with helperFunctions' above the set of all packages. 2016-03-20 14:31:25 +00:00
Nicolas B. Pierron a39c5ff0d8 Re-indent the top of pkgsFun. 2016-03-20 14:31:25 +00:00
Nicolas B. Pierron 9444d6e6de Split miss-indented last lines. to simplify future diffs. 2016-03-20 14:31:25 +00:00
Pascal Wittmann 097e20ccfe python-radicale: user newer sqlalchemy version 2016-03-20 15:24:08 +01:00
Vladimír Čunát f9cae4f6dc fpm: init at 1.4.0
/cc #14061.
2016-03-20 11:56:07 +01:00
Eric Sagnes b27593276c im-engines: use recurseIntoAttrs 2016-03-20 14:53:32 +09:00
zimbatm 7850525e2c Merge pull request #14003 from cstrahan/go-ide-packages
goPackages: add ide-like packages
2016-03-20 00:16:25 +00:00
zimbatm 008f170bcb Merge pull request #14012 from peti/update-gnupg
Update default version of gnupg to 2.1.x
2016-03-20 00:05:15 +00:00
zimbatm a6c1481c66 foreman: init at 0.78.0 2016-03-19 22:47:52 +00:00
zimbatm d9e60e4d43 htop: merge both implementations
htop 2.0+ is now cross-platform
2016-03-19 22:20:20 +00:00
zimbatm 5a64bc44ea move all ruby modules to development/ruby-modules 2016-03-19 22:06:26 +00:00
Edward Tjörnhammar c871c625c0
kodiPlugins.hyper-launcher.{plugin,service}: init at 1.2.0 2016-03-19 22:54:52 +01:00
Edward Tjörnhammar 0f3618da1e
kodiPlugins: sort collection alphabetically 2016-03-19 22:54:18 +01:00
Jude Taylor 76947878cb add xautoclick 2016-03-19 13:11:29 -07:00
Eelco Dolstra 455ec64d11 s3ql: 2.13 -> 2.17.1 2016-03-19 21:01:21 +01:00
Eelco Dolstra 497c828611 fuse: 2.9.3 -> 2.9.5 2016-03-19 21:01:20 +01:00
Pascal Wittmann 2dc1f2c934 perl-Cache-FastMmap: 1.40 -> 1.43 2016-03-19 18:59:15 +01:00
Pascal Wittmann f53df327ac perl-Plack: fix build 2016-03-19 18:59:15 +01:00
Pascal Wittmann 535c1f1f7a perl-CSS-DOM: 0.15 -> 0.16 2016-03-19 18:59:15 +01:00
Franz Pletz b887b16a2c pythonPackages.libvirt: 1.3.0 -> 1.3.2 2016-03-19 17:35:59 +01:00
Franz Pletz 3c060b93b6 lxd: 0.17 -> 2.0.0.rc4 2016-03-19 16:40:33 +01:00
Franz Pletz 87012e7321 pythonPackages.searx: 0.7.0 -> 0.8.1
The old version was broken.
2016-03-19 16:34:13 +01:00
Pascal Wittmann 15029ff44a perl-Apache-LogFormat-Compiler: 0.13 -> 0.33 2016-03-19 13:27:54 +01:00
Pascal Wittmann 135ef9cc32 perl-POSIX-strftime-Compiler: init at 0.41 2016-03-19 13:27:31 +01:00
Pascal Wittmann def056d770 perl-AppSqitch: 0.9993 -> 0.9994 2016-03-19 12:51:17 +01:00
Tim Cuthbertson b8c26d9e73 pythonPackages.piep: init at 0.8.0 2016-03-19 17:45:53 +11:00
joachifm 7e48d80b7d Merge pull request #14001 from romildo/new.catfish
catfish: init at 1.4.1
2016-03-19 00:19:31 +00:00
joachifm bd4db4e91e Merge pull request #13959 from ambrop72/power-fix
python-packages/power: Fix build due to falsely declared dependency.
2016-03-18 22:15:48 +00:00
joachifm 59caca43c1 Merge pull request #14020 from Baughn/dosage
dosage: Init at 2016.03.17
2016-03-18 22:07:01 +00:00
Svein Ove Aas f54d6fc697 dosage: Init at 2016.03.17 2016-03-18 23:03:35 +01:00
Nicolas B. Pierron 89f7dcaa21 Move all aliases into their own file. 2016-03-18 21:22:27 +00:00
Arseniy Seroka 1fb354d1ab Merge pull request #14008 from bzizou/scotch
scotch: init at 6.0.4
2016-03-18 22:50:20 +03:00
zimbatm 9c4b45fafe Merge pull request #13601 from zimbatm/ruby-dev
ruby.dev
2016-03-18 19:05:45 +00:00
José Romildo Malaquias 00b5bd3fb3 catfish: init at 1.4.1 2016-03-18 14:43:36 -03:00
José Romildo Malaquias bb6d3f0b59 distutils_extra: 2.26 -> 2.39 2016-03-18 14:43:35 -03:00
joachifm 1bc691b298 Merge pull request #14011 from bzizou/matheval
libmatheval: init at 1.1.11
2016-03-18 16:24:58 +00:00
Bruno Bzeznik Bruno.Bzeznik@imag.fr 259f9226e5 libmatheval: init at 1.1.11 2016-03-18 17:06:36 +01:00
Moritz Ulrich ea30f86814 btrbk: Init at 0.22.2 2016-03-18 14:53:19 +01:00
Johannes Bornhold 67b1acd989 mysql55: Allow to build on darwin 2016-03-18 14:23:14 +01:00
Peter Simons 9c10ac957d Update our default version of GnuPG from 2.0.x to 2.1.x.
This patch closes https://github.com/NixOS/nixpkgs/issues/4888.
2016-03-18 11:06:22 +01:00
Bruno Bzeznik Bruno.Bzeznik@imag.fr 75af59f8eb scotch: init at 6.0.4 2016-03-18 10:54:41 +01:00
Charles Strahan d53d5048d8 goPackages: add ide-like packages
This adds the following packages:

 * errcheck
 * gotool
 * gometalinter
 * motion
 * shlex
2016-03-18 03:14:44 -04:00
Robert Helgesson b9f7bb15e5 perl-Hook-LexWrap: 0.24 -> 0.25
Also add meta section.
2016-03-17 22:27:48 +01:00
Peter Simons 0d5de6d738 Merge pull request #13716 from hrdinka/update/b2
backblaze-b2: merge wtih b2 and update to 0.4.4
2016-03-17 19:49:34 +01:00
Peter Simons 73f53ddf9c Merge pull request #11878 from lancelotsix/update_boost
pkgs.boost: 1.59 -> 1.60
2016-03-17 19:45:44 +01:00
Christoph Hrdinka 0f2011c76c b2: delete in favor of backblaze-b2 2016-03-17 19:30:04 +01:00
Robin Gloster 9b0b681158 Merge pull request #13994 from mboes/terraform
terraform: allow compiling with go-1.6 and above, not just go-1.6.
2016-03-17 17:21:36 +01:00
Mathieu Boespflug 24c9636898 terraform: allow compiling with go-1.6 and above, not just go-1.6. 2016-03-17 16:27:34 +01:00
Arseniy Seroka 1d1ccfac7e Merge pull request #13982 from cstrahan/go-sct
go-sct: init at 2016-01-11
2016-03-17 16:53:22 +04:00
Théophane Hufschmitt 11c57d4459 pythonPackages.termstyle: init at 0.1.10 2016-03-17 08:42:49 +01:00
Théophane Hufschmitt 6f65412358 pythonPackages.arrow: 0.5.0 -> 0.7.0 2016-03-17 08:42:49 +01:00
Théophane Hufschmitt e9cd37110d pythonPackages.chai : init at 1.1.1 2016-03-17 08:42:48 +01:00
Charles Strahan 610e2234dd go-sct: init at 2016-01-11
Color temperature setting library and CLI that operates in a similar way
to f.lux and Redshift
2016-03-17 01:50:39 -04:00
Sheena Artrip 6f4458d16f libcollectdclient: init at 5.5.0 2016-03-17 00:00:05 -04:00
Ambroz Bizjak 492c826a5d pythonPackages/power: 1.2 -> 1.4
This fixes the build both for Python 2.7 and 3.
2016-03-16 23:46:37 +01:00
Domen Kožar c2013ea4ec Merge pull request #13969 from mboes/terraform
terraform: init at 0.6.13.
2016-03-16 22:20:43 +00:00
Frederik Rietdijk 78ad3a1658 Merge pull request #13870 from NixOS/python-wip
Python: update pandas, and other packages
2016-03-16 18:05:27 -04:00
Frederik Rietdijk cc11102858 pythonPackages.xarray: 0.7.0 -> 0.7.1 2016-03-16 17:55:53 -04:00
Frederik Rietdijk 700c8dc6d0 pythonPackages.pandas: 0.17.1 -> 0.18.0 2016-03-16 17:55:53 -04:00
Frederik Rietdijk efd6e1884c pythonPackages.pandas_17: init at 0.17.1 2016-03-16 17:55:52 -04:00
Frederik Rietdijk 8585441ae5 pythonPackages.pandas_18: init at 0.18.0 2016-03-16 17:55:52 -04:00
Frederik Rietdijk f2d2d515ee pythonPackages.xlrd: fix test runner 2016-03-16 17:55:52 -04:00
Frederik Rietdijk 896f5372be pythonPackages.xlwt: init at 1.0.0 2016-03-16 17:55:52 -04:00
Frederik Rietdijk c0114b3f63 pythonPackages.openpyxl: 2.3.0 -> 2.3.3 2016-03-16 17:55:51 -04:00
Frederik Rietdijk 2de0f6e965 pythonPackages.ipython: 4.0.3 -> 4.1.2 2016-03-16 17:55:51 -04:00
Frederik Rietdijk f7f149035e pythonPackages.jupyter_console: 4.1.0 -> 4.1.1 2016-03-16 17:55:51 -04:00
Tobias Geerinckx-Rice 0dea3803e7 freefall: inherit kernel package from linuxPackages
Let's never bump again.
2016-03-16 21:10:20 +01:00
Mathieu Boespflug 8b105a325a terraform: init at 0.6.13. 2016-03-16 19:28:02 +01:00
Mathieu Boespflug b198028215 go: Add isGo15 and isGo16 tests. 2016-03-16 19:27:23 +01:00
Ryan Artecona 9da0403527 yamdi: init at 1.9 2016-03-16 11:39:43 -04:00
Peter Simons 6c601ed1f0 Merge pull request #13838 from peti/drop-old-dovecot-versions
Drop support for dovecot 2.1.x from Nixpkgs and NixOS.
2016-03-16 14:36:52 +01:00
Joachim Schiele dca9630fae stardict-3.0.3: now also removed forgotten all-packages.nix reference 2016-03-16 11:49:25 +01:00
Frederik Rietdijk c7e448818f pythonPackages.sphinxcontrib_plantuml: 0.5 -> 0.7, fix build 2016-03-15 18:57:16 -04:00
Robin Gloster 2ac4dba0fb Merge pull request #13909 from kragniz/linux-4.5
linux: add 4.5
2016-03-15 18:12:47 +01:00
Peter Simons f519187063 Add LTS Haskell version 5.6, 5.7, and 5.8. 2016-03-15 13:16:54 +01:00
Peter Simons fdcd875b0e anki: update sqlalchemy build input and clean up the expression
SQLAlchemy-0.9.9 was broken recently, probably because of an sqlite
update. So we just use the latest version.

The build expression used to take the entire package set as an argument,
which is poor style because it hides the true dependencies from the
interface. I've change the code to expect the appropriate individual
packages instead.
2016-03-15 10:59:12 +01:00
Robin Gloster ad0bf29e87 Merge pull request #13930 from grahamc/upgrade-activemq
activemq: 5.8.0 -> 5.13.2
2016-03-15 03:51:30 +01:00
joachifm e1d451c8c5 Merge pull request #7596 from jraygauthier/jrg/brother_mfc7860dw
Brother MFC7860DW cups lpr wrapper drivers.
2016-03-15 02:06:59 +00:00
Graham Christensen 2be76d8b48 activemq: 5.8.0 -> 5.13.2
It seems Activemq was "split" in to 5.8.0 and 5.12.1 only to keep from
trampling someone on 5.8.0. This is to the point of not upgrading the
default, but making a new activemq attribute specific for 512.

As far as I can tell, there is no good reason to stay providing 5.8.0,
so this is the proposal to delete it.

Note: There are over 1,000 fixes between 5.9.0 to 5.13.2.
2016-03-14 20:56:07 -05:00
Raymond Gauthier f4cc2c6fb7 brgenml1cupswrapper: init at 3.1.0-1
Brother generic cups wrapper over lpr driver
`brgenml1lpr` init at same version.
2016-03-14 21:54:57 -04:00
Louis Taylor 8bdee80d39 linux: add 4.5 2016-03-14 22:34:05 +00:00
zimbatm 86f1579266 ruby: install rubygems directly into the derivation
Having a separate rubygems package can lead to split-brain scenarios.

Since rubygems is designed to replace himself on a ruby installation,
let's do that.
2016-03-14 22:23:25 +00:00
Peter Simons b7c8085c30 Merge pull request #13837 from peti/drop-old-postfix-versions
Drop support for postfix 2.x from Nixpkgs and NixOS.
2016-03-14 21:52:56 +01:00
Robin Gloster c5b145f48f Merge pull request #13894 from joachifm/fix-python-ntfy
Fix ntfy
2016-03-14 17:22:35 +01:00
Eelco Dolstra 27af419541 Merge pull request #13896 from nbp/import-top-level
Replace references to all-packages.nix, by references to the top-level
2016-03-14 13:49:42 +01:00
Robin Gloster ccbfe2dfd5 Merge pull request #13911 from DamienCassou/testing-vdirsyncer
Update vdirsyncer and add automated tests
2016-03-14 13:48:03 +01:00
Joachim Fasting 4a531165b5 pythonPackages.emoji: specify checkPhase 2016-03-14 13:30:50 +01:00
Vincent Laporte 456d16ff4b verasco: init at 1.3 2016-03-14 12:06:18 +01:00
Arseniy Seroka 1c9b2ccdec Merge pull request #13877 from sheenobu/freeradius/init
freeradius: init at 3.0.11
2016-03-14 13:04:51 +03:00
Damien Cassou d373ef3508 pytest-subtesthack: init at 0.1.1 2016-03-14 09:59:04 +01:00
Damien Cassou c3dac8f467 pytest-localserver: init at 0.3.5 2016-03-14 09:59:04 +01:00
Damien Cassou fa50a1f117 Merge pull request #13876 from DamienCassou/add-hypothesis-3.1
Add hypothesis 3.1
2016-03-14 07:31:16 +01:00
Damien Cassou 4909c56b69 hypothesis: init at 3.1.0 2016-03-14 07:29:54 +01:00
Damien Cassou 94f1fe35f8 flaky: init at 3.1.0 2016-03-14 07:29:41 +01:00
Sheena Artrip 0bae05dacd freeradius: init at 3.0.11 2016-03-14 01:50:44 -04:00
Nikolay Amiantov 305fa26005 Merge pull request #13850 from abbradar/e20
Update Enlightenment, rename e19 -> enlightenment, drop e16
2016-03-14 02:28:58 +03:00
Arseniy Seroka 42b7191499 Merge pull request #13867 from ericbmerritt/cuter-support
cuter: init at 0.1
2016-03-13 21:49:24 +03:00
zimbatm da213dda15 Merge pull request #13857 from zimbatm/apache-http2
Apache HTTP/2
2016-03-13 18:28:17 +00:00
Nicolas B. Pierron 6313a5698a Replace references to all-packages.nix, by references to the top-level of nixpkgs repository. 2016-03-13 18:25:52 +00:00
宋文武 93feb5d115 drop my maintainership (close #13881) 2016-03-13 18:39:01 +01:00
Joachim Fasting 56f8dd00b4 pythonPackages.ntfy: add missing inputs
Additionally needs emoji, sleekxmpp, and mock to build. Also change
to request2 for py3k support.

Fixes https://hydra.nixos.org/build/33157748
2016-03-13 18:20:00 +01:00
Joachim Fasting 0a227e59ee pythonPackages.emoji: init at 0.3.9
Required by ntfy
2016-03-13 18:19:56 +01:00
Joachim Fasting afe481e733 pythonPackages.sleekxmpp: 1.2.5 -> 1.3.1
Also re-enable for !python3; readme states 2.x is supported; builds for
me.
2016-03-13 18:19:37 +01:00
Frederik Rietdijk f557df6074 Merge pull request #13891 from luispedro/fix_imread_webp
pythonPackages.imread: add webp support
2016-03-13 13:08:39 -04:00
Luis Pedro Coelho 8be123e92f pythonPackages.imread: add webp support
pkg-config needs to be present at build time for webp support to be
auto-detected by the build script.
2016-03-13 16:41:13 +01:00
Thomas Tuegel d39b1db400 Merge pull request #13880 from acowley/juliamac
julia: darwin compatibility
2016-03-13 10:38:04 -05:00
Frederik Rietdijk 43df5707e7 Merge pull request #13885 from Beauhurst/django_1_8_11
django: 1.8.10 -> 1.8.11, 1.9.3 -> 1.9.4 security updates
2016-03-13 10:50:09 -04:00
Robert Scott 6335907d2f django: 1.8.10 -> 1.8.11, 1.9.3 -> 1.9.4 security updates 2016-03-13 12:54:51 +00:00
Evgeny Egorochkin 88ba7d8ecd azure: package sdk and vhd tools for go 2016-03-13 13:57:31 +02:00
Anthony Cowley 889d6d11a3 julia: darwin compatibility
Along with PR #13879, these patches let julia build and run on
darwin. Using an llvm with shared library support is an idea adopted from
a @pikajude comment here https://github.com/NixOS/nixpkgs/issues/10864

The libgit2 change is mechanical to pull in iconv on darwin.

The frameworks are referenced by julia's build system.
2016-03-13 04:18:16 -04:00
Damien Cassou 64633c2fff hypothesis: rename before introducing v3 2016-03-13 08:19:04 +01:00
joachifm c386927d8b Merge pull request #13813 from Beauhurst/django_nose_compat_hijack
Add django-hijack and dependencies (attempt 2)
2016-03-13 03:58:17 +00:00
Robert Scott 0899727f69 django_hijack: init at 2.0.7 2016-03-13 01:38:48 +00:00
Eric Merritt 98b4d19a0b cuter: init at 0.1 2016-03-12 13:45:00 -08:00
Michiel Leenaars 2f24bef782 python-gnutls: 2.0.1 -> 3.0.0 2016-03-12 22:31:29 +01:00
Arseniy Seroka a25d2a7466 Merge pull request #13717 from zohl/banshee
[WIP] Banshee
2016-03-12 20:19:49 +03:00
zimbatm eac89788da apacheHttpd: add support for HTTP/2
In NixOS you can enable HTTP/2 like this:

    services.httpd.extraModules = [ "http2" ];
    services.httpd.extraConfig = ''
      Protocols h2 http/1.1
    '';
2016-03-12 15:31:23 +00:00
joachifm ab2b2670c8 Merge pull request #13860 from romildo/new.uget
uget: init at 2.0.5
2016-03-12 14:21:25 +00:00
José Romildo Malaquias 607ea3ef76 uget: init at 2.0.5 2016-03-12 10:05:49 -03:00
Robert Scott fb26e993c5 django_compat: init at 1.0.8 2016-03-12 11:49:37 +00:00
Robert Scott 0f22f51d60 django_nose: init at 1.4.3 2016-03-12 11:48:47 +00:00
Michiel Leenaars b4fc87b062 python-sipsimple: 2.6.0 -> 3.0.0 2016-03-12 12:10:38 +01:00
Nikolay Amiantov eaab584a3f python2Packages.pythonefl: 1.16.0 -> 1.17.0 2016-03-12 03:11:21 +03:00
Nikolay Amiantov e358d9498c e19: rename to enlightenment, drop old one 2016-03-12 03:10:37 +03:00
Graham Christensen b2b8c1345a tornadokick: Removed, missing upstream. 2016-03-11 15:54:55 -06:00
Graham Christensen 57830093e7 pythonPackages: upgrade hashes to sha256 2016-03-11 15:54:55 -06:00
Graham Christensen f822592598 pyusb: md5sum changed upstream? 2016-03-11 15:54:55 -06:00
Graham Christensen 53d31634ed pushbullet: 0.5.0 -> 0.10.0 because 0.5.0 doesn't exist upstream 2016-03-11 15:54:54 -06:00
Graham Christensen c81118c76c ntplib: 0.3.2 -> 0.3.3 2016-03-11 15:54:54 -06:00
Michiel Leenaars dc6c4f909b python-eventlib: 0.2.1 -> 0.2.2 2016-03-11 22:15:41 +01:00
Michiel Leenaars a8c8dc9e27 python-msrplib: 0.18 -> 0.19 2016-03-11 22:11:34 +01:00
Michiel Leenaars c8f9f9d9ed python-application: 1.5.0 -> 2.0.2 2016-03-11 22:05:29 +01:00
Michiel Leenaars 9a67d1dcab python-xcaplib: 1.1.0 -> 1.2.0 2016-03-11 21:51:06 +01:00
Arseniy Seroka bbe1adaf75 Merge pull request #13841 from eskimor/add-git-crypt
pkgs: Made git-crypt installable
2016-03-11 22:36:00 +03:00
Markus Hauck 7b09191563 jo: init at 1.0 2016-03-11 19:33:13 +01:00
joachifm cc3cd8ba0e Merge pull request #13538 from leenaars/rimshot
rimshot: init at 1.0
2016-03-11 17:22:32 +00:00
Robert Klotzner 4eaffab2f3 pkgs: Made git-crypt installable 2016-03-11 18:16:15 +01:00
Michiel Leenaars d73dfd2780 rimshot: init at 1.0 2016-03-11 17:42:07 +01:00
Peter Simons c73a22aed5 Drop support for dovecot 2.1.x from Nixpkgs and NixOS.
Version 2.2.x has been stable for a long time; let's give up support for
the obsolete version.
2016-03-11 16:03:09 +01:00
Eelco Dolstra dd53c65dcc Merge remote-tracking branch 'origin/gcc-5' into staging
Still some breakage but no blockers:

http://hydra.nixos.org/eval/1242130?filter=x86_64-linux&compare=1237852&full=#tabs-now-fail
2016-03-11 16:02:38 +01:00
Peter Simons 24fe7bab08 Drop support for postfix 2.x from Nixpkgs and NixOS.
Version 3.x has been stable for a long time; let's give up support for
the obsolete versions.
2016-03-11 16:01:43 +01:00
Peter Simons ce6a1a6cea Revert "Drop support for postfix 2.x from Nixpkgs and NixOS."
This reverts commit a889c683dd. Sorry, I
pushed to the wrong branch. :-(
2016-03-11 16:00:49 +01:00
Peter Simons a889c683dd Drop support for postfix 2.x from Nixpkgs and NixOS.
Version 3.x has been stable for a long time; let's give up support for
the obsolete versions.
2016-03-11 15:58:03 +01:00
Thomas Tuegel d2dc8cc47f kde5.colord-kde: init at 0.5.0.20160224 2016-03-11 08:45:41 -06:00
Lluís Batlle i Rossell e026b5c243 Adding rowhammer test. 2016-03-11 14:29:56 +01:00
Luca Bruno 370c318eb0 Merge pull request #13812 from obadz/go-upower-notify
add go-upower-notify
2016-03-11 12:34:11 +01:00
obadz a1f8b5bcd0 goPackages.upower-notify: init at a58ceb9 2016-03-11 11:24:42 +00:00
obadz 8928aa9a7b goPackages.go-systemd: 2688e91 -> 7b2428f 2016-03-11 11:24:42 +00:00
obadz 54571aa76b goPackages.dbus: a5942de -> 230e4b2
Keep old version around because I can't get lxd-go-systemd to build
against the new one
2016-03-11 11:24:42 +00:00
obadz 71ac0cd55e yeshup: init at 5461a8f 2016-03-11 11:24:41 +00:00
Nikolay Amiantov 08893956fb Merge pull request #13823 from abbradar/colord
colord color management daemon
2016-03-11 13:50:12 +03:00
Luca Bruno dcfca100ec Merge pull request #12525 from knupfer/ngx_brotli
add nginxModules.brotli
2016-03-11 11:05:21 +01:00
Luca Bruno b01d868951 Merge pull request #13706 from mkovacs/pyav
pythonPackages.av: init at 0.2.4
2016-03-11 10:54:31 +01:00
Luca Bruno 2ae4c3baca Merge pull request #13817 from lancelotsix/update_sqlalchemy
pythonPackages.sqalchemy: 1.0.10 -> 1.0.12
2016-03-11 10:50:15 +01:00
Luca Bruno 91211f2601 Merge pull request #13826 from romildo/new.pygmentex
pygmentex: init at 0.8
2016-03-11 10:39:18 +01:00
Vladimír Čunát 6f9fe31b42 awstats: init at 7.4, including a simple service 2016-03-11 10:37:06 +01:00
José Romildo Malaquias b6db54b064 pygmentex: init at 0.8 2016-03-10 22:09:23 -03:00
Nikolay Amiantov 776845bbeb xiccd: init at 0.2.2 2016-03-11 01:26:56 +03:00
Eelco Dolstra 7760d6e02d Revert "goPackages: make it easier to automate updates"
This reverts commit 1371084ae1.

Introducing yet another non-standard package style / auto-updater
without proper discussion is really not a good idea. We really need a
proper process for this.
2016-03-10 17:25:25 +01:00
Eelco Dolstra ba469dbf9b Revert "fzf: 0.11.1 -> 0.11.4"
This reverts commit 46abbc9dc9.
2016-03-10 17:23:58 +01:00
Eelco Dolstra 10a159306a Revert "go-packages: use lib.importJSON"
This reverts commit 2206a24caa.
2016-03-10 17:23:29 +01:00
zimbatm 585a9c2fa7 Merge pull request #13815 from joachifm/fix-faust2
faust2: fix build
2016-03-10 15:32:13 +00:00
Lluís Batlle i Rossell d6368dbd21 Adding rtl8723bs driver recipe.
Not tested on hardware.
2016-03-10 15:32:43 +01:00
Joachim Fasting 2f73decba8 faust2: fix build
Fixes https://github.com/NixOS/nixpkgs/issues/12749

The build failure was caused by brittle detection of the
llvm version. See the code for (excessive) details. This fix
is a quick hack, a proper fix would be to parse the version
of the input llvm derivation and use that to derive a proper
value. Here we just pin the version.

Also move build-time deps to `nativeBuildInputs`.
2016-03-10 15:32:18 +01:00
Arseniy Seroka 16bffdcb99 Merge pull request #10509 from markus1189/activemq-512
Add 5.12.1 version of Apache ActiveMQ in addition to 5.8.0
2016-03-10 16:08:11 +03:00
joachifm b2bd557387 Merge pull request #13793 from zimbatm/fzf-0.11.4
fzf: 0.11.1 -> 0.11.4
2016-03-10 13:07:55 +00:00
Domen Kožar b1274ee475 Merge pull request #13806 from ashgillman/fix-pillow-34
python34 pillow: add build input lcms2
2016-03-10 12:19:47 +00:00
ashgillman 6ab7c50ea6 Use lcms2 for all pillow python versions 2016-03-10 22:16:00 +10:00
Jakob Gillich 3fd47945e0 rustRegistry: 2016-02-25 -> 2016-03-10 2016-03-10 13:02:58 +01:00
joachifm d30b6f6a7b Merge pull request #13781 from romildo/new.epson_201207w
epson_201207w: init at 1.0.0
2016-03-10 11:29:10 +00:00
zimbatm 73de4019f0 Merge pull request #13784 from matthewbauer/new-pkgs
add wla-dx and rgbds
2016-03-10 10:04:47 +00:00
ashgillman 02fdd9162e python34 pillow: add build input lcms2 2016-03-10 16:01:44 +10:00
Graham Christensen 6b4a70c672 libotr_3_2: remove, not updated since 2012, and unused. 2016-03-09 17:20:36 -06:00
Lancelot SIX fa6c611386 pythonPackages.sqalchemy: 1.0.10 -> 1.0.12
1.0.11 and 1.0.12 are bugfixes releases. See

http://www.sqlalchemy.org/blog/2016/02/15/sqlalchemy-1.0.12-released/
http://www.sqlalchemy.org/blog/2015/12/23/sqlalchemy-1.0.11-released/
2016-03-09 23:07:50 +01:00