Commit Graph

175822 Commits

Author SHA1 Message Date
R. RyanTM
5bf1da574b guake: 3.4.0 -> 3.5.0
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/guake/versions
2019-04-14 14:51:50 -07:00
Frederik Rietdijk
993e2b4ec2
Merge pull request #59098 from NixOS/staging-next
Staging next
2019-04-11 18:23:14 +02:00
Robert Schütz
b54bce24cf home-assistant: 0.91.2 -> 0.91.3 2019-04-11 17:43:55 +02:00
Timo Kaufmann
0550927c47
Merge pull request #57201 from tesq0/pull-request-unity
unity3d: 2017.4.10f1 -> 2018.3.0f2
2019-04-11 17:07:56 +02:00
AmineChikhaoui
02bb5e35ea pythonPackages.azure-mgmt-storage: remove patch.
as suggested in the comment.
2019-04-11 16:41:48 +02:00
Mikolaj Galkowski
594964260b unity3d: 2017.4.10f1 -> 2018.3.0f2 2019-04-11 16:30:48 +02:00
Mikolaj Galkowski
0ef83bc0fd unity3d: add tesq0 to the maintainers 2019-04-11 16:30:48 +02:00
Mikolaj Galkowski
023b3a5730 maintainers: add tesq0 2019-04-11 16:30:48 +02:00
aszlig
6b2bd330fa
wordgrinder: Fix sha256 hash
The hash used for fetchFromGitHub was on the archive itself, however
fetchFromGitHub is actually a wrapper of fetchzip:

hash mismatch in fixed-output derivation '...-source':
  wanted: sha256:1zqx3p9l22njni44ads3fyw3xh6807wmb5k1x2glg61z81cwc6sf
  got:    sha256:08lnq5wmspfqdjmqm15gizcq0xr7mg4h62qhvwj63v0sd6ks1cal

When using nix-prefetch-url without the --unpack argument, I get:

1zqx3p9l22njni44ads3fyw3xh6807wmb5k1x2glg61z81cwc6sf

And with the --unpack argument:

08lnq5wmspfqdjmqm15gizcq0xr7mg4h62qhvwj63v0sd6ks1cal

Just to be 100% sure the contents are the same, I also diffed the
contents of the former tarball with the outputs of the unpacked dir and
they're the same.

I didn't actually test the package (which doesn't build right now
anyway), but now at least the source checksum is fixed :-)

Signed-off-by: aszlig <aszlig@nix.build>
Cc: @matthiasbeyer
2019-04-11 14:58:02 +02:00
Pascal Wittmann
391e474062
Merge pull request #59273 from veprbl/pr/snakemake_5.4.4
snakemake: 5.2.2 -> 5.4.4
2019-04-11 14:41:26 +02:00
Pascal Wittmann
aea1ebd186
Merge pull request #58705 from dtzWill/update/sstp-1.0.12
sstp: 1.0.11 -> 1.0.12
2019-04-11 14:38:24 +02:00
Pascal Wittmann
eeec3349b1
Merge pull request #59296 from Quiark/master
keepassxc: 2.3.4 -> 2.4.0
2019-04-11 14:25:31 +02:00
Matthieu Coudron
a4c15f1b35 python3Packages.papis: provide as a library too (#59070)
* python3Packages.papis: provides as a library too

The project is turning into a dependency for several scripts and possibly UIs
(see the different repositories at https://github.com/papis/) so it makes sense
to have it as a library.

* moved papis to python-modules

* add myself as maintainer
2019-04-11 12:55:08 +02:00
Alexander Sosedkin
5d81445797 python3Packages.nixpkgs: 0.2.2 -> 0.2.3 2019-04-11 12:53:17 +02:00
worldofpeace
bbe83c0520
Merge pull request #58969 from veprbl/pr/awkward_0_8_14
pythonPackages.awkward: 0.8.7 -> 0.8.14, enable more tests
2019-04-11 04:55:17 -04:00
worldofpeace
f8062cb500
Merge pull request #58798 from r-ryantm/auto-update/python3.7-ldap3
python37Packages.ldap3: 2.5.2 -> 2.6
2019-04-11 04:46:11 -04:00
worldofpeace
6542a4cb8e python37Packages.ldap3: 2.5.2 -> 2.6 2019-04-11 04:45:33 -04:00
worldofpeace
8f371c82bd lollypop: 1.0.3 -> 1.0.5
https://gitlab.gnome.org/World/lollypop/tags/1.0.4
https://gitlab.gnome.org/World/lollypop/tags/1.0.5
2019-04-11 04:38:01 -04:00
Robert Schütz
84029e2646
Merge pull request #59265 from peterhoeg/f/repology
repology: fix homepage for a few packages - nothing else
2019-04-11 10:36:31 +02:00
Frederik Rietdijk
f6dcb5f70b hiredis-vip: init at 0.3.0 2019-04-11 09:38:50 +02:00
worldofpeace
d85c466936 plasma5.xdg-desktop-portal-kde: fix build
Was missing KIO
2019-04-11 03:36:29 -04:00
Bob van der Linden
77ce9098c0 keepassxc: run test with offscreen qt plugin
Co-Authored-By: Quiark <me@rplasil.name>
2019-04-11 15:36:21 +08:00
Bas van Dijk
1a926b82a8
Merge pull request #59263 from Zimmi48/dune-1.9.0
dune: 1.8.2 -> 1.9.0
2019-04-11 09:07:14 +02:00
Väinö Järvelä
11d491dce5 pipenv: Ignore Python site-packages
pipenv nix wrapper contains a PYTHONPATH which has some dependencies
for pipenv installed. pipenv by default uses site-packages when
resolving packages, which means that any package that is included in
the nix wrapper is satisfied when running `pipenv install`.

But when the actual virtualenv created by pipenv is activated, it
doesn't contain those packages anymore and fails to import them.

pipenv has a flag PIP_IGNORE_INSTALLED which can be used to ignore
site-packages. Which fixes the problem of having different resolved
packages when running pipenv and when running the virtualenv.
2019-04-11 07:59:36 +02:00
Roman Plášil
96fec4214d fix test running 2019-04-11 13:56:35 +08:00
Frederik Rietdijk
230c67f43b Merge master into staging-next 2019-04-11 07:50:23 +02:00
worldofpeace
932f1086a9 plasma5.plasma-workspace: fix patch 2019-04-11 01:45:06 -04:00
worldofpeace
b528e0aecf font-manager: 0.7.4.3 -> 0.7.5, fix build
Has fixes for type-argument mismatches in lastest vala etc.

Note that there isn't an offical 0.7.5 release yet (not tagged).
Patching the fixes would have been nicer, but all the changes
touched the translations.
2019-04-11 01:32:21 -04:00
Sarah Brofeldt
99eddf32dc
Merge pull request #59077 from divi255/master
libow: init at 3.2p1
2019-04-11 07:30:23 +02:00
ryan4729
49c646cbf7 ffmpeg_4: build with videotoolbox on darwin (#57743) 2019-04-11 01:09:45 -04:00
worldofpeace
a9489f46b5
Merge pull request #59290 from jonafato/vocal-2.4.0
vocal: 2.3.0 -> 2.4.0
2019-04-11 01:04:27 -04:00
Matthew Bauer
28d83343a3
Merge pull request #58625 from xzfc/aria2
aria2: Add sphinx build dependency to generate man pages
2019-04-11 01:03:43 -04:00
worldofpeace
991f77b19f vocal: cleanup 2019-04-11 00:32:52 -04:00
Tobias Bora
c0d27053cc drawpile: set meta.platforms (#57888) 2019-04-11 00:27:17 -04:00
Ryan Mulligan
0960fc72b7
Merge pull request #49868 from jfrankenau/fix-triggerhappy
nixos/triggerhappy: add option user
2019-04-10 20:56:19 -07:00
Herwig Hochleitner
4bdd577aff cask: use emacsPackagesNg instead of emacsPackages 2019-04-11 05:48:20 +02:00
adisbladis
a97fa8a299
Merge pull request #59272 from xrelkd/go-ethereum
go-ethereum: 1.8.25 -> 1.8.26
2019-04-11 04:39:30 +01:00
Roman Plášil
44225ebaf6 WIP: keepassxc: 2.3.4 -> 2.4.0
running test doesn't work currently because of finding qt plugins
2019-04-11 11:20:49 +08:00
Jon Banafato
9404900cc4 vocal: 2.3.0 -> 2.4.0
Vocal has a new release featuring a number of bug fixes and new
features. See the full changelog at
https://github.com/needle-and-thread/vocal/releases/tag/2.4.0.
2019-04-10 21:00:02 -04:00
Herwig Hochleitner
fcd769b721 cask: clean up and byte compile
cc @FlexW
2019-04-11 02:40:27 +02:00
Matthew Bauer
51be4c6f32
Merge pull request #59278 from veprbl/pr/netbsd_darwin_fix
netbsd.mkDerivation: fix darwin build
2019-04-10 20:39:58 -04:00
Timo Kaufmann
bd50fc942b
Merge pull request #56809 from jpathy/patch-2
Zotero: Fix to use patchelf instead of FHS Env.
2019-04-11 00:31:31 +02:00
divisor
f0157c2364 maintainer: disserman 2019-04-10 23:48:21 +02:00
divisor
d44250ba18 libow: init at 3.2p1 2019-04-10 23:48:10 +02:00
Dmitry Kalinkin
81ab32e510
netbsd.mkDerivation: don't supply -z relro
Fixes netbsd.locale

Fixes: aab8c7ba437d ('netbsd: add cross target')
2019-04-10 17:35:08 -04:00
Dmitry Kalinkin
1548084c3b
netbsd.mkDerivation: fix darwin build
Fixes build of netbsd.make on darwin

Fixes: aab8c7ba437d ('netbsd: add cross target')
2019-04-10 16:58:00 -04:00
Bas van Dijk
38ae3fe584
Merge pull request #59270 from basvandijk/alertmanager-DynamicUser
nixos/prometheus/alertmanager: use DynamicUser instead of nobody
2019-04-10 22:56:17 +02:00
bricewge
9eb4e1596f brig: 0.3.0 -> 0.4.1 (#58612) 2019-04-10 22:42:58 +02:00
Mario Rodas
5e2dee877a influxdb: 1.6.3 -> 1.7.5 (#58622) 2019-04-10 22:32:12 +02:00
Mario Rodas
90231bc929 dep2nix: 0.0.2 -> 2019-04-02 (#58623) 2019-04-10 22:29:30 +02:00