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

26925 commits

Author SHA1 Message Date
Joachim Fasting 63a1edb58f
ion3: requires lua 5.1
See e.g., https://hydra.nixos.org/build/44338071/nixlog/1/raw
2016-12-04 16:22:56 +01:00
c74d 7f5af41140 perlPackages.Swim: init at 0.1.44
Add the Perl module `Swim`, version 0.1.44, generated by
`nix-generate-from-cpan`.

This Perl module is the reference implementation for the lightweight
markup language [Swim].

I have tested this change per nixpkgs manual section 11.1 ("Making
patches").

[Swim]: <https://github.com/ingydotnet/swim-info>
2016-12-04 12:50:47 +02:00
c74d 524f7c02dc perlPackages.HTMLEscape: init at 1.10
Add the Perl module `HTML::Escape`, version 1.10, generated by
`nix-generate-from-cpan`.

I have tested this change per nixpkgs manual section 11.1 ("Making
patches").
2016-12-04 12:50:47 +02:00
c74d e12b2b8119 perlPackages.ModuleBuildPluggablePPPort: init at 0.04
Add the Perl module `Module::Build::Pluggable::PPPort`, version 0.04,
generated by `nix-generate-from-cpan`.

I have tested this change per nixpkgs manual section 11.1 ("Making
patches").
2016-12-04 12:50:47 +02:00
c74d 8e8742eac0 perlPackages.ModuleBuildPluggable: init at 0.10
Add the Perl module `Module::Build::Pluggable`, version 0.10,
generated by `nix-generate-from-cpan`.

I have tested this change per nixpkgs manual section 11.1 ("Making
patches").
2016-12-04 12:50:47 +02:00
Jörg Thalheim e00632e200 Merge pull request #20858 from Mic92/lxcfs
lxcfs: init at 2.0.4
2016-12-04 11:33:07 +01:00
Daiderd Jordan ef080c9df4 Merge pull request #20860 from mdaiter/correctBashoErlangVersion
erlang_basho_R16: B03-1 -> B02-8
2016-12-04 09:57:29 +01:00
Robert Helgesson 64291e4fa2
pythonPackages.slob: 2016-03-04 -> 2016-11-03 2016-12-04 09:12:03 +01:00
Robert Helgesson 7cdf160f34
perl-Test2-Suite: 0.000052 -> 0.000061 2016-12-04 09:12:02 +01:00
Robert Helgesson 0dc4e70fc9
perl-Math-BigInt: 1.999801 -> 1.999802 2016-12-04 09:12:02 +01:00
Robert Helgesson 64aabae8e2
perl-CryptX: 0.041 -> 0.044 2016-12-04 09:12:02 +01:00
Frederik Rietdijk 3c731f4762 Merge pull request #20877 from romildo/new.adapta-backgrounds
adapta-backgrounds: init at 0.4.0.6
2016-12-04 08:56:28 +01:00
Frederik Rietdijk ab39c29293 Merge pull request #20879 from mguentner/cpp_ipfs_api
cpp-ipfs-api: init at 2016-11-09
2016-12-04 08:54:31 +01:00
John Ericson 5c6234a7d3 top-level: Allow manually specifying a stdenv, and fix stdenv tests
- The darwin test can now force the use of the freshly-booted darwin stdenv
 - The linux test now passes enough dummy arguments

This may make debugging harder, if so, check out #20889
2016-12-03 17:21:07 -08:00
Aristid Breitkreuz e3dcf5da1d rq: init at 0.9.2 (broken because our v8 is too old, and I'm too weak to update v8) 2016-12-03 23:36:48 +01:00
Aristid Breitkreuz 475224968c rust-packages: update 2016-11-15 -> 2016-12-03 2016-12-03 20:15:31 +01:00
Frederik Rietdijk 4162623460 pythonPackages.cython: 0.24.1 -> 0.25.1 2016-12-03 16:09:37 +01:00
romildo 650501f5b1 e17gtk: init at 3.22.0 2016-12-03 08:20:33 -02:00
Maximilian Güntner ffdf7ec234
cpp-ipfs-api: init at 2016-11-09
Signed-off-by: Maximilian Güntner <code@klandest.in>
2016-12-03 06:43:47 +01:00
aszlig 1f9cbcd21d
beets: Set Python version via top-level attribute
This largely reverts commit 599312739e.

The main reason is that it breaks the plugins, because the mentioned
commit didn't change the attributes for the plugins as well.

But instead of just fixing the attributes when we import the plugin
packages, let's just override pythonPackages in all-packages.nix.

Right now, Beets is in transition to Python 3, so we don't need to wait
that long until we can remove the dependency on Python 2:

https://github.com/beetbox/beets/releases/tag/v1.4.1

Once Python 3 support is no longer beta, we can just change this by
changing one line only instead of several.

Tested this by building beets with both external plugins.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
Cc: @FRidh
2016-12-03 05:25:13 +01:00
aszlig a76f5241c5
vimiv: init at 0.7.2
Packaging itself is pretty much straightforward, the tests however
revealed a few issues, which I have fixed with a small patch that has
been upstreamed at https://github.com/karlch/vimiv/pull/32.

The other sed-based patches in postPatch are mostly NixOS-specific.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2016-12-03 03:33:32 +01:00
aszlig 6343fef546
python/pillow: Only disable failing tests
There's no reason to disable ALL tests just because only one particular
test module is failing.

Tested on i686-linux and x86_64-linux against these Python versions:

  Python 2.6: The interpreter itself doesn't build
  Python 2.7: Successful for both architectures
  Python 3.3: Successful for both architectures
  Python 3.4: Successful for both architectures
  Python 3.5: Successful for both architectures
  Python 3.6: One of the dependencies of pillow doesn't build (pytest)

Tests for PyPy still fail, which is why the doCheck attribute is only
set to false if we're building for PyPy.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
Cc: @desiderius, @goibhniu, @prikhi
2016-12-03 03:33:27 +01:00
romildo 629b979227 adapta-backgrounds: init at 0.4.0.6 2016-12-02 23:01:23 -02:00
Vincent Laporte e672fbc6f0 omake: remove 0.9.8.6-rc1 2016-12-02 19:49:08 +00:00
Vincent Laporte 7f501d7f02 teyjus: 2.0b2 -> 2.1 2016-12-02 19:49:07 +00:00
Vincent Laporte 895d3c8908 omake: 0.9.8.5 -> 0.10.1 2016-12-02 19:49:07 +00:00
Matthew Daiter d331e538c2 erlang_basho_R16: B03-1 -> B02-8 2016-12-02 16:12:14 +01:00
Jörg Thalheim af609b0254
lxcfs: init at 2.0.4 2016-12-02 13:52:03 +01:00
Dejan Lukan d78b890178 mail-notification: init at 5.4 2016-12-02 11:47:35 +01:00
Jonathan Glines 538ec0cc92 teensyduino: init at 1.31 (#20807) 2016-12-02 11:31:01 +01:00
Frederik Rietdijk da3d8d077d pythonPackages.django_guardian: add missing pytest 2016-12-02 10:35:17 +01:00
Jörg Thalheim acddb5d367 Merge pull request #20805 from danbst/rxvt-vtwheel
urxvt: add vtwheel extension
2016-12-02 08:27:51 +01:00
Joachim Fasting 4e2e2039c2
pythonPackages.acoustic: fix meta.license
There is no licenses.bsd; the upstream license looks like 3-clause BSD.
2016-12-02 03:26:52 +01:00
Frederik Rietdijk 7d2bc0c2d2 pythonPackages.numtraits: needs six 2016-12-01 21:07:33 +01:00
Frederik Rietdijk 2dba67fbb7 pythonPackages.webassets: disable tests
Test invocation was broken. Now that is fixed, but getting the tests to
pass requires more work.
2016-12-01 21:07:33 +01:00
Frederik Rietdijk 8b5544bea2 pythonPackages.pynzb: disable tests 2016-12-01 21:07:33 +01:00
Frederik Rietdijk 13017d8ba6 pythonPackages.rpkg: use local rpm and koji 2016-12-01 21:07:33 +01:00
Frederik Rietdijk 19ca20c91f pythonPackages.rpm: rpm for specific python version
rpm provides a Python module that is used by certain packages. We need
to override pkgs.rpm to get a correct version.
2016-12-01 21:07:33 +01:00
Frederik Rietdijk 74276caf19 koji -> pythonPackages.koji
koji is both a library and an application. It is used in Nixpkgs
primarily as a library and therefore I move it.
2016-12-01 21:07:33 +01:00
Frederik Rietdijk be020a2582 pythonPackages: do not propagate pytest
pytest plugins should not propagate pytest. Instead, packages depending
on pytest and plugins, should explicitly depend on both the plugin(s)
and pytest. This change will more easily allow packages to depend on
another version of pytest when needed.
2016-12-01 21:07:33 +01:00
Frederik Rietdijk a8379a1906 pythonPackages.pytestcache: disable tests 2016-12-01 21:07:33 +01:00
Frederik Rietdijk d3f3ad3b26 pythonPackages.pyjwt: does not need pytest 2.7 2016-12-01 21:07:33 +01:00
Frederik Rietdijk 49a313c395 pythonpackages.lti: rename to PyLTI and remove overriding
- rename to PyLTI to follow upstream
- remove overriding because it is not necessary; newer mock can be used,
and modules python packages should be fixed to not propagate pytest (see
separate commit).

cc maintainer @layus
2016-12-01 21:07:33 +01:00
Jascha Geerds d69a25dfde pythonPackages.docker: Add myself as a maintainer 2016-12-01 20:42:27 +01:00
Jascha Geerds bfc2721ebf pythonPackages.docker: Fix build for python3 2016-12-01 20:41:14 +01:00
Frederik Rietdijk 9e4538112a pythonPackages.acoustics: init at 0.1.2 2016-12-01 17:51:39 +01:00
John Ericson 4751d9e5ad top-level: turn the screw
- Non-cross stdenvs are honest and assert that `crossSystem` is null

 - `crossSystem` is a mandatory argument to top-level/stage.nix, just like
   `system` and `platform`

 - Broken default arguments on stdenvs for testing are gone.

 - All stdenvs (but little-used stdenvNix) take the same arguments for easy
   testing.
2016-12-01 11:24:33 -05:00
John Ericson a55d1ecc90 top-level: Document why nixpkgsFun doesn't close over inferred default arguments 2016-12-01 11:24:33 -05:00
John Ericson 05c12f147e top-level: Move default-choosing logic to top-level/platforms.nix
This mirrors stdenv/default.nix
2016-12-01 11:24:32 -05:00
Nikolay Amiantov 58d2d460d0 pythonPackages.pyrsistent: propagate six 2016-12-01 17:31:04 +03:00
Pascal Wittmann 130bc32268 Merge pull request #20824 from offlinehacker/pkgs/convoy/init
convoy: init at 0.5.0
2016-12-01 14:35:22 +01:00
Cillian de Roiste d42cfcec92 all-packages: move terminus-ttf beside terminus 2016-12-01 14:10:09 +01:00
goibhniu 304150f576 Merge pull request #20743 from Okasu/terminus-font-ttf
terminus-font-ttf: init at 4.40.1
2016-12-01 14:07:40 +01:00
Frederik Rietdijk d22432880b pythonPackages.oauthlib: 0.7.2 -> 2.0.0 2016-12-01 09:37:12 +01:00
Frederik Rietdijk e39584c67d pythonPackages.pyjwt: 1.4.0 -> 1.4.2 2016-12-01 09:37:11 +01:00
Franz Pletz b24b6bbfb0
prometheus-blackbox-exporter: init at 0.3.0 2016-12-01 02:04:58 +01:00
John Ericson 39753f5360 top-level: Close over fewer arguments for stdenv stages
This makes the flow of data easier to understand. There's little downside
because the args in question are already inspected by the stdenvs.

cross-compiling in particular is simpler because we don't need to worry
about overriding the config closed over by `allPackages`.
2016-11-30 19:11:03 -05:00
John Ericson d240a0da1a top-level: Remove cycles: stdenv calls in top-level but not vice versa
This commit changes the dependencies of stdenv, and clean-up the stdenv
story by removing the `defaultStdenv` attribute as well as the `bootStdenv`
parameter.

Before, the final bootstrapping stage's stdenv was provided by
all-packages, which was iterating multiple times over the
top-level/default.nix expression, and non-final bootstrapping stages'
stdenvs were explicitly specified with the `bootStdenv` parameter.

Now, all stages' stdenvs are specified with the `stdenv` parameter.
For non-final bootstrapping stages, this is a small change---basically just
rename the parameter.
For the final stage, top-level/default.nix takes the chosen stdenv and
makes the final stage with it.

`allPackages` is used to make all bootstrapping stages, final and
non-final alike. It's basically the expression of `stage.nix` (along with a
few partially-applied default arguments)

Note, the make-bootstrap-tools scripts are temporarily broken
2016-11-30 19:10:59 -05:00
John Ericson 07a2b17cbf top-level: Split some of pkgs/top-level/default.nix to pkgs/top-level/stage.nix
This is preparation for the latter just building a single stage, and the
former building a package set with the bootstrapped stdenv.
2016-11-30 19:04:22 -05:00
John Ericson ddeb0d2d6b top-level: Stop exposing all stdenvs 2016-11-30 19:03:01 -05:00
Jaka Hudoklin 3675631f63 convoy: init at 0.5.0 2016-11-30 23:28:18 +01:00
Jaka Hudoklin 54e2973533 docker-machine-kvm: init at 0.7.0 2016-11-30 19:10:25 +01:00
Eelco Dolstra c0da5f78d6
make-tarball.nix: Don't check broken packages
They're broken after all. In particular, this prevents us from
evaluating packages that are unsupported on a particular platform.

Reverts a147ddc42c.

Fixes #20817.
2016-11-30 15:21:30 +01:00
Eelco Dolstra e3a873479e
Remove fetchMD5warn
Deprecation warnings should not be used in Nixpkgs because they spam
innocent "nix-env -qa" users with (in this case) dozens of messages
that they can't do anything about.

This also reverts commit 2ca8833383.
2016-11-30 15:14:30 +01:00
Lancelot SIX de4dba37a1
pythonPackages.pytest_30: 3.0.3 -> 3.0.4 2016-11-30 13:11:36 +01:00
Frederik Rietdijk c517718ffc Merge pull request #20152 from igsha/fix-mezzanine
pythonPackages.mezzanine: fixes #19989
2016-11-30 10:43:34 +01:00
Frederik Rietdijk 07dcc4f43a pythonPackages.Theano: move and rename variants
We have two derivations, one that supports Cuda, and one that does not.
The names, TheanoWithCuda and TheanoWithoutCuda, now reflect that.
Furthermore, a boolean passthru.cudaSupport was added.

In the future the two derivations should be merged in one, with a
parameter `cudaSupport`.
2016-11-30 10:04:54 +01:00
danbst 5c0367ee5b urxvt: add vtwheel extension
This allows to scroll content in less, screen, nano, tmux and others
(the ones, who create so called "secondary screens"), similar to VTE-based
terminals.

Note, however, that mouse wheel won't work in `less -X`, which is used
by basic `journalctl`. Fix it with `export SYSTEMD_LESS=FRSMK`
2016-11-30 03:43:28 +02:00
Tuomas Tynkkynen 8a4d6516ee Merge remote-tracking branch 'upstream/staging' into master 2016-11-30 00:34:23 +02:00
joachim schiele 8806344618
rust: Updates & rename rustUnstable to rustNighly. 2016-11-29 17:09:01 +01:00
Alexander Tsamutali c9b8a6585d Add tools/networking/polysh 2016-11-29 17:32:21 +03:00
Domen Kožar 8b782f4bd4 Merge pull request #19990 from domenkozar/buildtheworld
Build all derivations on Linux, unless specified otherwise
2016-11-29 13:17:13 +01:00
joachim schiele f67061c1de (rustc-nightly) init at 2016-11-26 - precompiled rustc nightly binary 2016-11-29 09:10:39 +01:00
Domen Kožar 5c750e4940 Build all derivations at least for 64bit Linux 2016-11-28 15:19:47 +01:00
Michael Raskin c93ec7b6b7 bftpd: init at 4.4 2016-11-28 13:58:45 +01:00
Joachim Fasting 1915f6908a
linux_grsec_nixos: use the "modinst arg list too long" patch
An alternative to e38b74ba89d3d03e01ee751131d2a6dc316ac33a; see
f19c961b4e for details
2016-11-28 11:41:07 +01:00
Joachim Fasting 4c7323545b
Revert "grsecurity: work around for #20490"
This reverts commit e38b74ba89.

I failed to notice f19c961b4e461da045f2e72e73701059e5117be0; better
use that fix instead.
2016-11-28 11:40:55 +01:00
Okasu de925e952e terminus-font-ttf: init at 4.40.1 2016-11-28 10:54:33 +03:00
Graham Christensen d1055c0ed7
all-packages.nix: whitespace cleanup 2016-11-27 22:12:06 -05:00
Michael Fellinger bff2b98290
ruby: 3.2.1 -> 2.3.3 2016-11-27 22:11:49 -05:00
Franz Pletz f38955dd4c Merge pull request #20665 from vdemeester/delve-0.11-alpha
delve: init at 0.11.0-alpha
2016-11-28 03:50:34 +01:00
Michael Weiss 9538176042 sks: init at 1.1.6 (#20717) 2016-11-28 03:28:40 +01:00
Vincent Demeester 6d47cb4131
skopeo: init at 0.1.16
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
2016-11-27 21:06:21 -05:00
Franz Pletz e394c305a8 Merge pull request #20620 from rnhmjoj/fakeroute
fakeroute: init at 0.3
2016-11-28 03:01:15 +01:00
Graham Christensen 7b5619506b Merge pull request #20250 from guillaumekoenig/add-encryptr-2.0.0
encryptr: init at 2.0.0
2016-11-27 20:59:56 -05:00
Michael Raskin 5d5346d824 julia_05: init at 0.5.0; right now backtrace-related tests are disabled because they fail in this configuration, but the rest works 2016-11-27 10:14:33 +01:00
Frederik Rietdijk 868bd67aa9 pythonPackages.jupyter_console: disable tests 2016-11-27 09:37:41 +01:00
Frederik Rietdijk f7ad0223ce pythonPackages.ipywidgets: fix tests 2016-11-27 09:37:41 +01:00
Frederik Rietdijk dcff4fdf07 Merge pull request #20747 from ericsagnes/pkg-update/rainbowstream
rainbowstream: 1.3.5 -> 1.3.6
2016-11-27 09:35:52 +01:00
Jörg Thalheim b51aacb456 Merge pull request #20745 from rardiol/allegro5
Allegro5
2016-11-27 09:15:03 +01:00
Eric Sagnes d0e8117ccb rainbowstream: 1.3.5 -> 1.3.6 2016-11-27 11:37:20 +09:00
Jörg Thalheim b8019981a6 Merge pull request #20736 from zimbatm/su-exec-0.2
su-exec: init at 0.2
2016-11-27 01:27:10 +01:00
Michael Raskin db7e616b45 julia-git: add macOS frameworks, hopefully that's useful 2016-11-26 22:41:41 +01:00
Michael Raskin e3d0fd8bc7 julia-git: pin LLVM 3.9, seems to work fine 2016-11-26 22:33:52 +01:00
Peter Simons c272c66276 ghc: add release candidate 1 for 8.0.2 2016-11-26 21:24:40 +01:00
Ricardo Ardissone ec74f36ccc allegro5unstable: removed 2016-11-26 17:52:16 -02:00
zimbatm 7f4e514a31 su-exec: init at 0.2 2016-11-26 16:48:13 +00:00
Robert Helgesson 57d3827d49
perl-IO-Socket-SSL: 2.037 -> 2.039 2016-11-26 16:40:23 +01:00
vbgl 376973a1bb Merge pull request #20404 from vbgl/alcotest-0.7.0
ocamlPackages.alcotest: 0.4.5 -> 0.7.2
2016-11-26 16:17:32 +01:00
Michael Raskin 81667f3663 Merge pull request #19806 from vbgl/opa-4310
opa: update
2016-11-26 14:00:37 +00:00
Michael Raskin fcc5a4d3b8 Merge pull request #20672 from AndersonTorres/pari
pari/gp: 2.7.6 -> 2.9.0
2016-11-26 13:34:15 +00:00
Vladimír Čunát 925b335607
Merge branch 'master' into staging 2016-11-26 11:27:09 +01:00
Robert Helgesson ca77ba39bf
perl-Test-Simple: 1.302062 -> 1.302067 2016-11-26 10:26:02 +01:00
Robert Helgesson 088ff595e6
perl-Math-BigInt: 1.999800 -> 1.999801 2016-11-26 10:25:47 +01:00
Robert Helgesson 0637d94930
perl-Digest-JHash: 0.09 -> 0.10 2016-11-26 10:25:26 +01:00
Robert Helgesson ba095feb53
perl-Data-Validate-IP: 0.26 -> 0.27 2016-11-26 10:25:12 +01:00
Robert Helgesson e700ff6e0c
perl-bignum: 0.43 -> 0.44
Resolves CVE-2016-1238, see
<https://rt.cpan.org/Public/Bug/Display.html?id=116506>.
2016-11-26 10:14:42 +01:00
Rok Garbas b09435ea51 pythonPackages.magic-wormhole: enable tests 2016-11-26 04:55:28 +01:00
Frederik Rietdijk 310b5fb7be Merge pull request #20710 from nico202/cowpatty
coWPAtty: init at 4.6
2016-11-25 12:44:57 +01:00
Ole Krüger a31c37c759 [mathematica] 10.0.2 -> 11.0.1 2016-11-25 12:13:41 +01:00
Nicolò Balzarotti 54b42cb454 coWPAtty: init at 4.6 2016-11-25 11:25:07 +01:00
Frederik Rietdijk 4f51481bb2 pythonPackages.pynacl: fix tests 2016-11-25 09:13:01 +01:00
Frederik Rietdijk 18637d877a magic-wormhole: move to python-packages
since it is actually a library.
2016-11-25 09:13:01 +01:00
Frederik Rietdijk 51645f8f47 Merge pull request #20675 from carlsverre/update/mopidy-gmusic
mopidy-gmusic: 1.0.0 -> 2.0.0
2016-11-25 08:59:56 +01:00
AndersonTorres d395439a10 pari/gp: 2.7.6 -> 2.9.0
Adding gp2c compiler, too.
2016-11-24 22:44:56 -02:00
Carl Sverre 5d62f80bb7 gmusicapi: 7.0.0 -> 10.1.0 2016-11-24 14:41:43 -08:00
Carl Sverre 8602f82169 gpsoauth: 0.0.4 -> 0.2.0 2016-11-24 14:41:09 -08:00
Carl Sverre 555928c228 mutagen: 1.32 -> 1.34 2016-11-24 14:40:09 -08:00
Carl Sverre 99e6b63199 pycryptodome: init at 3.4.3 2016-11-24 14:38:46 -08:00
Jaka Hudoklin 3b500d37f5 Merge pull request #19023 from offlinehacker/kube-update
WIP: kubernetes update package and module
2016-11-24 23:10:01 +01:00
Frederik Rietdijk cd7e72a597 zeitgeist: python bindings at pythonPackages.zeitgeist 2016-11-24 22:28:04 +01:00
Frederik Rietdijk 8fb430ca86 thunderbird: use python2
and remove pysqlite since its part of the standard library.
2016-11-24 22:28:04 +01:00
Frederik Rietdijk 53af34f226 deluge: use python2 2016-11-24 22:28:03 +01:00
Frederik Rietdijk fad1e442ad calibre: use python2 2016-11-24 22:28:03 +01:00
Frederik Rietdijk 6449435b04 libplist: use python2, multiple outputs, fix bindings 2016-11-24 22:28:03 +01:00
Frederik Rietdijk 869cf8a56b python35Packages.netaddr: disable tests instead of building 2016-11-24 22:28:03 +01:00
Frederik Rietdijk 5114fa8e89 bitbucket-cli: use python2 2016-11-24 22:28:03 +01:00
Frederik Rietdijk fb231dd4f6 pythonPackages.bitbucket-cli: 0.4.1 -> 0.5.1 2016-11-24 22:28:03 +01:00
Frederik Rietdijk e77a14b24b aws_shell: use python2 2016-11-24 22:28:03 +01:00
Frederik Rietdijk db8068e925 arangodb: use python2 2016-11-24 22:28:02 +01:00
Frederik Rietdijk 8b3d725cc3 Fabric: use python2 version 2016-11-24 22:28:02 +01:00
Frederik Rietdijk a99272d672 ffado: use python2 2016-11-24 22:28:02 +01:00
Rok Garbas cfa7ffa50b pythonPackages.afew: 2016-01-04 -> 2016-02-29 2016-11-24 09:17:08 +01:00
Rok Garbas 2109a5acb9 notmuch: needs emacs to run tests
emacs does not add anything to resulting closure size
2016-11-24 09:17:08 +01:00
Rok Garbas b3608c378c pythonPackages.alot: disable alot on python3 ...
... since upstream is only testing it on python2 and 0.3.7 release is
currently broken on python3
2016-11-24 09:17:08 +01:00
Rok Garbas 010aebd5ac notmuch-addrlookup: moved package from elmPackages root of nixpkgs 2016-11-24 09:17:08 +01:00
Vincent Demeester b808dabea0
delve: init at 0.11.0-alpha
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
2016-11-23 23:53:07 +01:00
Nikolay Amiantov 181701513e pythonPackages.webassets: 0.11.1 -> 0.12.0 2016-11-24 01:18:00 +03:00
Nikolay Amiantov 42dd31fe31 pythonPackages.flask_login: 0.2.2 -> 0.4.0 2016-11-24 01:18:00 +03:00
Nikolay Amiantov c47406dade pythonPackages.flask_assets: 0.11 -> 0.12 2016-11-24 01:18:00 +03:00
Nikolay Amiantov 4337d43969 pythonPackages.regex: 2016.01.10 -> 2016.11.18 2016-11-24 01:18:00 +03:00
Nikolay Amiantov 3d29ffe3e6 pythonPackages.python-axolotl: 0.1.7 -> 0.1.35 2016-11-24 01:17:59 +03:00
Nikolay Amiantov 1ff70e9f41 perlPackages.pcsc-perl: 1.4.13 -> 1.4.14 2016-11-24 01:17:59 +03:00
Nikolay Amiantov 1a9ce1d9d0 tdesktop: 0.10.1 -> 0.10.19 2016-11-24 01:17:54 +03:00
Nikolay Amiantov be95ceaff2 treewide: quote URLs in my packages 2016-11-24 01:17:52 +03:00
Lancelot SIX 00cecf6a84 Merge pull request #20195 from cko/remove_django_1_5
django_1_5: remove
2016-11-23 21:38:10 +01:00
Benjamin Saunders 8df969734a rust-bindgen: init at 0.19.1 (#19847) 2016-11-23 17:09:29 +00:00
Charles Strahan ecf30981dd Merge pull request #19064 from cstrahan/mesos-1.0.1
mesos: 0.28.2 -> 1.0.1
2016-11-23 11:40:02 -05:00
Domen Kožar ce6abb9495 nixopsUnstable: init at 2016-11-23 2016-11-23 17:35:36 +01:00
rnhmjoj d753527bd4
fakeroute: init at 0.3 2016-11-23 15:22:55 +01:00