Commit graph

13230 commits

Author SHA1 Message Date
Jörg Thalheim
7b20952c04 Merge pull request #28726 from vyp/interception-tools
interception-tools: init at 0.1.1
2017-09-02 08:24:57 +01:00
xd1le
e0b44a09b8 interception-tools: init at 0.1.1
The latest release of libyamlcpp in nixpkgs does not build because it
uses an older version of boost than the one in nixpkgs and therefore
expects a particular header file which does not exist in the latest
boost anymore. For this reason, a later (git) version of libyamlcpp is
used here (which actually doesn't even require boost).

The substituteInPlace in the prePatch phase is needed because libevdev
places its headers in non-standard places, meaning Nix cannot normally
find them. The `cut` command removes the first two "-I" characters from
the output of `pkg-config`. This needs to be in the prePatch phase
because otherwise Nix will patch these lines to `/var/empty`, meaning
you would have less specific replacement (in case other lines are also
patched to `/var/empty`).

I wrote the patch. (I believe it is NixOS specific.)
2017-09-02 16:17:53 +10:00
Samuel Leathers
917a0e3e77 glmark2: 2016-05-11 -> 2017-09-01 2017-09-01 22:01:24 -04:00
aszlig
40b76c8809
beets: Run tests for external plugins
In order to run the tests for the external plugins of beets, we need to
have beets itself as a dependency. So in order to do that, we now pass
beets without plugins and tests to the nativeBuildInputs of the plugins
so that we can run them.

As soon as the plugins are built they become part of the final beets,
which also has tests enabled, so disabling the tests for beets
derivation that is used for external plugin tests is a non-issue here
because they're going to be executed anyway.

Enabling tests for the alternatives plugin is pretty straightforward,
but in order to run tests for the copyartifacts plugin, we need to bump
the source code to the latest Git master.

The reason for this is that the version that was in use until now
required to have the beets source directory alongside of the
copyartifacts source code, but we already have beets available as a
normal dependency.

Updating copyartifacts to latest master largely consists of unit test
changes and a few Python 3 compatibility changes. However, one change
has the biggest stat, which is
sbarakat/beets-copyartifacts@1a0c281da0.

Fortunately, the last change is just moving the implementation to a
newer API from upstream beets and by the looks of the implementation it
seems to break support for moving files. However, reverting this commit
also reveals that moving files was already broken before, so it wouldn't
matter much whether we have this version bump or not.

Tested with the following command:

nix-build -E '(import ./. {}).beets.override {
  enableAlternatives = true;
  enableCopyArtifacts = true;
}'

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
Cc: @domenkozar, @pjones, @Profpatsch, @michalrus
2017-09-02 02:36:32 +02:00
aszlig
bd2aeb4883
beets-alternatives: Disable test suite for now
Regression introduced by 94351197cd.

Running the tests results in the following traceback:
  ...
  File ".../unittest/loader.py", line 91, in loadTestsFromName
    module = __import__('.'.join(parts_copy))
  File ".../test/regrtest.py", line 184, in <module>
    for module in sys.modules.itervalues():
RuntimeError: dictionary changed size during iteration

The reason for this is that the test directory itself is called "test"
and the package including regrtest.py is also called "test", so the
loader tries to load tests from its own implementation.

We could fix this by changing PYTHONPATH and/or making the test
directory a proper package, but we'd still have failing tests because
beets itself is required to run the tests.

However for now I'm just removing the unit_tests kwarg in setup.py so
that we have the same behaviour as before the initially mentioned
commit.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2017-09-02 02:36:28 +02:00
Michael Raskin
cc44675dfc Merge pull request #28855 from danielfullmer/john-compile-fix
john: workaroud for build failure
2017-09-01 21:55:28 +02:00
Joachim F
189797c795 Merge pull request #28840 from romildo/upd.uget
uget: 2.0.8 -> 2.0.10
2017-09-01 18:20:00 +00:00
John Ericson
b298916442 rpm: Fix to get raw binutils for headers 2017-09-01 11:44:57 -04:00
John Ericson
3f30cffa55 misc pkgs: Use $NIX_BINUTILS for when needed
Certain files are now only there instead of $NIX_CC (some are in both)
2017-09-01 11:44:55 -04:00
Daniel Fullmer
28b1170f49 john: workaroud for build failure 2017-09-01 11:05:01 -04:00
romildo
1f48ad8699 uget: 2.0.8 -> 2.0.10
- Update to version 2.0.10
- Use wrapGAppsHook to wrap binaries
- Use gstreamer-1.0
- Add dependence on libappindicator
2017-09-01 11:22:28 -03:00
Ruben Maher
d908b6a1b7 lftp: fix build on darwin
Add `gettext` (which provides `-lintl`) and disable `format` hardening in order
to fix build.
2017-09-01 12:58:32 +09:30
Jörg Thalheim
79527c2196 netmask: use autoreconfHook 2017-08-31 20:14:35 +01:00
Jens Binkert
1785ac4a13 netmask: init at 2.4.3 2017-08-31 20:27:00 +02:00
davidak
bd79b8c9fc bcachefs-tools: 2016-05-13 -> 2017-08-28 2017-08-31 05:39:24 -05:00
Eelco Dolstra
79954b9d1f
nix: 1.11.13 -> 1.11.14 2017-08-31 11:00:09 +02:00
Robin Gloster
b09ab584f0
vidalia: remove
closes #28753
2017-08-30 23:59:59 +02:00
Profpatsch
3bff3b10e1 youtube-dl: 2017.08.23 -> 2017.08.27
fixes (among others) mixcloud.com
2017-08-30 21:10:36 +02:00
Frederik Rietdijk
6d4bd78fad Merge commit '2858c41' into HEAD 2017-08-30 21:07:07 +02:00
John Ericson
97a48835b7 mkDerivation, cc-wrapper: Check hardening flag validity in Nix
This becomes necessary if more wrappers besides cc-wrapper start
supporting hardening flags. Also good to make the warning into an
error.

Also ensure interface is being used right: Not as a string, not just in
bash.
2017-08-30 17:53:42 +02:00
Michael Raskin
4ef4a17f77 nilfs-utils: fix build
Just kill .libs to make sure patchelf does shrink-rpath correctly

Complain in comments that patchelf/#98 is still not used by stdenv
2017-08-30 17:54:04 +02:00
Franz Pletz
6b3982668f Merge pull request #28733 from lsix/update_datamash
datamash: 1.1.1 -> 1.2
2017-08-30 13:15:01 +02:00
Franz Pletz
60bdca87e3 Merge pull request #28671 from lsix/update_gpg2
gnupg: 2.1.23 -> 2.2.0
2017-08-30 13:06:57 +02:00
Lancelot SIX
9061a4e759
datamash: 1.1.1 -> 1.2
See http://lists.gnu.org/archive/html/info-gnu/2017-08/msg00008.html
for release infrmation
2017-08-30 09:25:08 +02:00
Lancelot SIX
1e5b5bd719
gnupg: 2.1.23 -> 2.2.0
See http://lists.gnu.org/archive/html/info-gnu/2017-08/msg00012.html
for release information
2017-08-30 09:15:02 +02:00
Peter Hoeg
8988f8589a httraqt: init at 1.4.9 2017-08-30 15:02:39 +08:00
Peter Hoeg
b50309a5b5 httrack: 3.48.22 -> 3.49.2 2017-08-30 14:26:51 +08:00
Guillaume Maudoux
d15a067856 blueman: fix python wrapper mockup 2017-08-30 02:59:57 +02:00
Symphorien Gibol
bd54589233 networkmanager_iodine: init at 1.2.0 2017-08-30 02:58:29 +02:00
Franz Pletz
4c82835f3f Merge pull request #28715 from NeQuissimus/shallot
shallot: init at 0.0.3
2017-08-30 01:26:48 +02:00
Piotr Bogdan
322af6d80e polygraph: 4.3.2 -> 4.11.0 2017-08-30 01:21:10 +02:00
Franz Pletz
24d113ae5a Merge pull request #28713 from nico202/enchive
enchive: init at 3.3
2017-08-30 01:01:07 +02:00
Tim Steinbach
41aaeef570
shallot: init at 0.0.3 2017-08-29 17:43:50 -04:00
=
82f835d2ee
enchive: init at 3.3 2017-08-29 21:40:55 +02:00
Joachim Fasting
429044453f
dnscrypt-wrapper: 0.2.2 -> 0.3 2017-08-29 21:35:20 +02:00
Michael Raskin
a3111b8a77 xmacro: 0.3pre20000911 -> 0.4.6; switch upstream 2017-08-29 20:35:38 +02:00
Joachim F
2705c36336 Merge pull request #28679 from oxij/pkg/memtestplus-default
memtest86+: use debian patches, use default gcc
2017-08-29 18:01:15 +00:00
rushmorem
f86cac2dfc vault: 0.7.3 -> 0.8.1 2017-08-29 18:46:59 +02:00
Rushmore Mushambi
17817cadc3 Merge pull request #28691 from rushmorem/lizardfs
lizardfs: 3.10.2 -> 3.11.3
2017-08-29 18:22:01 +02:00
rushmorem
fafa1cca63 lizardfs: 3.10.2 -> 3.11.3 2017-08-29 18:19:33 +02:00
WilliButz
a72ba661ac netcat-openbsd: 1.105 -> 1.130 2017-08-29 16:45:20 +02:00
WilliButz
5b36d3993f highlight: 3.35 -> 3.39 2017-08-29 16:45:20 +02:00
Gabriel Ebner
9aaa6cda39 Merge pull request #28685 from ericsagnes/pkg-fix/fcitx-unikey
fcitx-unikey: fix build
2017-08-29 14:42:19 +02:00
Eric Sagnes
1ee49e13e6 fcitx-unikey: fix build 2017-08-29 21:32:56 +09:00
Jörg Thalheim
d881b024d4 lprof: fix build 2017-08-29 12:58:37 +01:00
Jörg Thalheim
f9192394ba dvgrab: 3.5 -> 2016-05-16 2017-08-29 12:36:39 +01:00
Jan Malakhovski
358604aae2 memtest86+: use debian patches, use default gcc 2017-08-29 11:08:06 +00:00
Victor Calvert
be40ed5a0b fanficfare: 2.9.0 -> 2.16.0 2017-08-29 06:30:52 -04:00
Vladimír Čunát
2858c41823
Merge branch 'master' into staging
There were some conflicts in python modules, commented at #28314.
2017-08-29 10:51:54 +02:00
Gabriel Ebner
c387c54b3c ibus-engines.anthy: 1.5.8 -> 1.5.9 2017-08-29 10:37:42 +02:00
Vladimír Čunát
34b6bbe021
Merge #28053: GNOME: 3.22 -> 3.24 2017-08-29 09:48:54 +02:00
Michael Raskin
14699ac91d cuneiform: maintain 2017-08-28 23:13:57 +02:00
Michael Raskin
48a941e29f cuneiform: use the branch with fresh fixes to fix the build 2017-08-28 23:13:57 +02:00
Tom Hunger
6dc4b5229b Fix ibus by using a python.buildEnv. 2017-08-28 20:01:07 +01:00
Franz Pletz
0f043d497d
unbound: 1.6.4 -> 1.6.5 2017-08-28 19:49:43 +02:00
Linus Heckemann
b73e3b6095 GNOME: 3.22 -> 3.24
This is a squash commit of the joint work from:

* Jan Tojnar (@jtojnar)
* Linus Heckemann (@lheckemann)
* Ryan Mulligan (@ryantm)
* romildo (@romildo)
* Tom Hunger (@teh)
2017-08-28 15:32:49 +01:00
Jörg Thalheim
49b17a8127 kargo: readd ansible2 to propagatedBuildInputs
was removed by accident in 16bab456b4
2017-08-28 12:05:33 +01:00
Jörg Thalheim
16bab456b4 kargo: fix evaluation 2017-08-28 11:57:55 +01:00
Jörg Thalheim
2f5dab753c ansible: move out of pythonPackages
ansible is not a library
2017-08-28 11:30:22 +01:00
Jörg Thalheim
7dd2e70b5f Merge pull request #28624 from swflint/git-fire
git-fire: Init at master as of 2017-08-27
2017-08-28 10:49:58 +01:00
Jörg Thalheim
4e0d38cee8 git-fire: nitpicks 2017-08-28 10:49:10 +01:00
Jörg Thalheim
27ac74daa5 mitmproxy: fix tests 2017-08-28 07:56:02 +01:00
Samuel W. Flint
c91fe60d00 git-fire: Init at master as of 2017-08-27 14:30 CST 2017-08-27 18:04:05 -05:00
Franz Pletz
26f10adfa9
xdg-user-dirs: 0.15 -> 0.16 2017-08-28 00:54:43 +02:00
Franz Pletz
d5680983dc
xdg_utils: 1.1.1 -> 1.1.2 2017-08-28 00:54:43 +02:00
Franz Pletz
aa1b75ef91
xl2tpd: 1.3.7 -> 1.3.10 2017-08-28 00:54:42 +02:00
Franz Pletz
4d10bb5efc
xfstools: remove unused patch 2017-08-28 00:54:42 +02:00
Franz Pletz
2d44bf1c9b
xdo: 0.5.5 -> 0.5.6 2017-08-28 00:54:42 +02:00
Franz Pletz
a160f34823
xar: 1.5.2 -> 1.6.1 2017-08-28 00:54:42 +02:00
Franz Pletz
fa7d449faa
bruteforce-luks: 1.2.1 -> 1.3.1 2017-08-28 00:54:41 +02:00
Bob van der Linden
e531f92b24 ngrok: use proper attribute names 2017-08-27 23:53:42 +01:00
Bob van der Linden
db59381a5d ngrok: 1.7.1 -> 2.2.8, added ngrok1 1.1.7
ngrok now releases a proprietary version (2.x). 1.1.7 can still be used
with a self-hosted ngrokd, but it won't work out of the box.

Therefore ngrok 2.2.8 is now the default for the `ngrok` package and
ngrok 1.1.7 can be installed using the `ngrok1` package.
2017-08-27 23:53:42 +01:00
Lukas Werling
f0a1ab78b4 meson/ninja: add setup hooks (#28444)
* Add setupHook for meson/ninja build

* libhttpseverywhere: Use meson/ninja setupHooks

* jamomacore: Remove superfluous ninja buildInput

* Remove obsolete ninja buildPhases

These are all handled by ninja's setup hook.

* lean2, xcbuild: fix build with ninja setup hook

Ninja is a runtime dependency here. However, cmake can generate Ninja
build files as well to satisfy the setup hook.

* qtwebengine: fix build with ninja setup hook
2017-08-27 19:42:21 +02:00
Daniel Frank
821881030d mbuffer: 20160613 -> 20170806 2017-08-27 16:21:10 +02:00
Jörg Thalheim
a196033f01 Merge pull request #28601 from sigma/pr/fzf-0.17.0
fzf: 0.16.11 -> 0.17.0
2017-08-27 06:26:30 +01:00
Jörg Thalheim
8d4f6ece15 Merge pull request #28602 from sigma/pr/silver-searcher-2.1.0
silver-searcher: 2.0.0 -> 2.1.0
2017-08-27 06:17:18 +01:00
Yann Hodique
f214a47ac4
fzf: 0.16.11 -> 0.17.0 2017-08-26 21:47:01 -07:00
Franz Pletz
88b9dd871a
syslogng_incubator: 0.5.0 -> 0.6.0, remove broken flag 2017-08-27 02:33:34 +02:00
Franz Pletz
fad5491936
syslogng: 3.9.1 -> 3.11.1 2017-08-27 02:33:34 +02:00
Franz Pletz
eecd559bf1
youtubeDL: 2017.07.30.1 -> 2017.08.23 2017-08-27 02:33:33 +02:00
Franz Pletz
951106c650
lldpd: 0.9.7 -> 0.9.8
Now uses the upstream systemd unit which adds lots of hardening flags.
2017-08-27 02:33:32 +02:00
Yann Hodique
04ff3e137d
silver-searcher: 2.0.0 -> 2.1.0 2017-08-26 12:00:52 -07:00
mimadrid
c3f28f84a8
xsv: 0.12.1 -> 0.12.2 2017-08-26 20:07:18 +02:00
Joachim Fasting
0387f84cf3
Revert "xsv: 0.12.1 -> 0.12.2"
This reverts commit edb61d1151.

The sha256 is malformed.
2017-08-26 18:45:41 +02:00
mimadrid
edb61d1151
xsv: 0.12.1 -> 0.12.2 2017-08-26 16:09:25 +02:00
Joachim F
227697bc67 Merge pull request #28562 from oxij/nixos/i2pd
nixos: i2pd: bits and pieces
2017-08-26 10:07:35 +00:00
Jörg Thalheim
18232bca7e clamav: fix build 2017-08-26 10:22:42 +01:00
Vladimír Čunát
9eafe6706d
Merge #28264: curl: 7.55.0 -> 7.55.1 2017-08-26 11:10:22 +02:00
Jörg Thalheim
d154c6e353 Merge pull request #28455 from veprbl/hdfview
hdfview: init at 2.14
2017-08-26 06:34:31 +01:00
Jörg Thalheim
2f24483de7 hdfview: fix download url 2017-08-26 06:20:33 +01:00
Bas van Dijk
70aa1e3657 strongswan: 5.5.3 -> 5.6.0
See: https://wiki.strongswan.org/versions/66

fixes #28485
2017-08-25 22:10:36 +01:00
Jörg Thalheim
ad7439fbd1 strongswan: add patch for CVE-2017-11185 2017-08-25 22:02:25 +01:00
Frederik Rietdijk
665d393919 Merge remote-tracking branch 'upstream/master' into HEAD 2017-08-25 19:39:41 +02:00
Frederik Rietdijk
656e14f64f Merge remote-tracking branch 'upstream/python-wip' into HEAD 2017-08-25 19:37:57 +02:00
Frederik Rietdijk
63b66bf960 python.pkgs.WSGIProxy: disable python3 2017-08-25 19:36:18 +02:00
Frederik Rietdijk
997043c137 bepasty: move out of python-packages
because its a (web) application and thus doesn't belong there.
2017-08-25 19:36:18 +02:00
Frederik Rietdijk
19183d17ed mitmproxy: use older tornado
because python.pkgs.tornado is not < 4.5 anymore.
2017-08-25 19:36:16 +02:00
Tristan Helmich
3933c4e943 graylog: 2.3.0 -> 2.3.1 2017-08-25 17:37:06 +02:00
SLNOS
cd6df6bbf7 i2pd: fix meta.license 2017-08-25 12:49:10 +00:00
Gabriel Ebner
bff84ca752 Merge pull request #28559 from dywedir/ripgrep
ripgrep: 0.5.2 -> 0.6.0
2017-08-25 09:15:38 +02:00
dywedir
5db77990db ripgrep: 0.5.2 -> 0.6.0 2017-08-25 01:25:02 +03:00
WilliButz
e1b044646b
evemu: 2.4.0 -> 2.6.0 2017-08-24 21:20:04 +02:00
WilliButz
0fbafd6195
duc: 1.4.1 -> 1.4.3 2017-08-24 21:20:04 +02:00
WilliButz
1c0e7d631d
debianutils: 4.8.1 -> 4.8.2 2017-08-24 21:20:03 +02:00
WilliButz
a8db87efd8
whois: 5.2.17 -> 5.2.18 2017-08-24 21:20:03 +02:00
Jörg Thalheim
f54018cee8 Merge pull request #28532 from makefu/pkgs/metasploit/update
metasploit: 4.14.25 -> 4.16.1
2017-08-24 14:20:10 +01:00
makefu
6a51bc8bd3
metasploit: 4.14.25 -> 4.16.1 2017-08-24 13:00:56 +02:00
Vladimír Čunát
8137a8cb73
gawk: refactor
- Don't build with libsigsegv by default.  The build apparently attempted
  to link against it, but it never retained the reference anyway...
- Side effect: stdenv bootstrapping needs no libsigsegv anymore.
- Run checks, but only in the interactive gawk by default on Linux,
  so that stdenv bootstrap isn't slowed down (by glibc locales, etc.).
- xz should be no longer needed in inputs, as we have it in stdenvs now.

The whole change was triggered by some used kernel versions still
breaking libsigsegv tests #28464.
2017-08-24 11:06:53 +02:00
Gabriel Ebner
d444c0056b zinnia: 2015-03-15 -> 2016-08-28
This fixes the build issue with GCC 6.
2017-08-24 08:21:15 +02:00
Tuomas Tynkkynen
2fc7651b25 Merge remote-tracking branch 'upstream/master' into staging 2017-08-24 02:08:32 +03:00
Bas van Dijk
09bde4a2cd elk: 5.4.2 -> 5.5.2
Release notes:

* https://www.elastic.co/guide/en/elasticsearch/reference/5.5/release-notes-5.5.2.html
* https://www.elastic.co/guide/en/logstash/5.5/logstash-5-5-2.html
* https://www.elastic.co/guide/en/kibana/current/release-notes-5.5.2.html
2017-08-23 01:58:12 +02:00
Dmitry Kalinkin
8b8e363979 hdfview: init at 2.14
hdf_java: init at 3.3.2
2017-08-22 18:31:39 -04:00
Jörg Thalheim
4565378641 Merge pull request #28473 from lluchs/tectonic
tectonic: init at 0.1.6
2017-08-22 20:38:14 +01:00
Jörg Thalheim
c9bb378622 Merge pull request #28467 from NickHu/scaleway-cli
scaleway-cli: init at v1.14
2017-08-22 20:09:47 +01:00
Matthew Justin Bauer
2eacddf0dc treewide: homepage URL fixes (#28475)
* pgadmin: use https homepage

* msn-pecan: move homepage to github

google code is now unavailable

* pidgin-latex: use https for homepage

* pidgin-opensteamworks: use github for homepage

google code is unavailable

* putty: use https for homepage

* ponylang: use https for homepage

* picolisp: use https for homepage

* phonon: use https for homepage

* pugixml: use https for homepage

* pioneer: use https for homepage

* packer: use https for homepage

* pokerth: usee https for homepage

* procps-ng: use https for homepage

* pycaml: use https for homepage

* proot: move homepage to .github.io

* pius: use https for homepage

* pdfread: use https for homepage

* postgresql: use https for homepage

* ponysay: move homepage to new site

* prometheus: use https for homepage

* powerdns: use https for homepage

* pm-utils: use https for homepage

* patchelf: move homepage to https

* tesseract: move homepage to github

* quodlibet: move homepage from google code

* jbrout: move homepage from google code

* eiskaltdcpp: move homepage to github

* nodejs: use https to homepage

* nix: use https for homepage

* pdf2djvu: move homepage from google code

* game-music-emu: move homepage from google code

* vacuum: move homepae from google code
2017-08-22 20:50:04 +02:00
Nick Hu
fcd8950520 scaleway-cli: init at v1.14 2017-08-22 14:26:47 +01:00
Simon Lackerbauer
7354913c2d sha1collisiondetection: 1.0.1 -> 1.0.3 2017-08-22 02:02:57 +02:00
John Ericson
0135e61b4c Merge remote-tracking branch 'upstream/master' into staging
That way the tarball job succeeds
2017-08-21 18:42:57 -04:00
Herwig Hochleitner
4e026c7b94 pinentry: fix keyboard/pointer grabbing bugs
use debian patches to get the gtk2 version to work with various tiling
window managers

Related reports:

https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=850708
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=851707
https://github.com/ch11ng/exwm/issues/263
https://github.com/ch11ng/exwm/issues/279
2017-08-22 00:26:27 +02:00
WilliButz
5073611082 rmlint: 2.4.4 -> 2.6.1
- version bump: 2.4.4 -> 2.6.1
- fetchurl -> fetchFromGitHub
- hompage: http -> https
2017-08-21 23:41:00 +02:00
WilliButz
c860c02def tcpdump: 4.9.0 -> 4.9.1
- fetch from GitHub instead of debian mirror
2017-08-21 23:41:00 +02:00
Lukas Werling
6922a48fe1 tectonic: init at 0.1.6 2017-08-21 22:49:10 +02:00
Daniel Peebles
7242500cc1 Merge pull request #27728 from konimex/ostree
ostree: 2016.11 -> 2017.9
2017-08-21 09:33:42 -04:00
Frederik Rietdijk
6bbc3a0b24 Merge commit '3b29468313bc8604fe8f85c8d9316fd276d3985c' into HEAD 2017-08-21 04:44:40 +02:00
Frederik Rietdijk
04cd1db2b7 Merge remote-tracking branch 'upstream/master' into HEAD 2017-08-21 01:28:27 +02:00
Joachim F
b51451b86c Merge pull request #28412 from rvolosatovs/update/keybase
keybase: 1.0.27 -> 1.0.28
2017-08-20 20:09:17 +00:00
Joachim F
b37dab6f91 Merge pull request #28413 from rvolosatovs/update/browserpass
browserpass: 1.0.5 -> 1.0.6
2017-08-20 20:08:58 +00:00
Michael Raskin
a0306821fd xzoom: init at 0.3.24 2017-08-20 18:28:19 +02:00
Vladimír Čunát
3b29468313
colord: fetchzip -> fetchurl
I see no benefit in fetchzip here, as it's a standard release tarball.
2017-08-20 09:46:08 +02:00
Vladimír Čunát
2d55ee40fa
colord: fixup build after automake update #28232
It was enough to switch the order of patching to avoid the need to
autoreconf.
2017-08-20 09:43:05 +02:00
Vladimír Čunát
76e6863cb1
lzop: 1.03 -> 1.04
This fixes build with gcc6.
2017-08-20 09:19:30 +02:00
Roman Volosatovs
5791a2574e
keybase: 1.0.27 -> 1.0.28 2017-08-19 21:38:57 +02:00
Roman Volosatovs
83370e5b4c
browserpass: 1.0.5 -> 1.0.6 2017-08-19 21:37:16 +02:00
Joachim F
fa62e7bf77 Merge pull request #28364 from jfrankenau/update-plowshare
plowshare: 2.1.6 -> 2.1.7
2017-08-18 19:20:58 +00:00
Johannes Frankenau
f179b27e89 plowshare: 2.1.6 -> 2.1.7 2017-08-18 09:16:29 +02:00
Matthew Bauer
3f85411ba5 dd-agent: use https for homepage 2017-08-17 14:56:10 -07:00
Matthew Bauer
5cfe844bd6 passwordstore: use https for homepage 2017-08-17 14:55:43 -07:00
Maciek Starzyk
4cce954c50 ttylog: fix typo in homepage 2017-08-17 22:12:40 +03:00
Frederik Rietdijk
8f2ea38f8f Merge remote-tracking branch 'upstream/master' into HEAD 2017-08-17 18:34:17 +02:00
John Ericson
63428ebab9 diffutils: coreutils is a run-time dep; specify pr's location 2017-08-16 11:54:34 -04:00
John Ericson
220e3817b8 findutils: Manually specify sort's location
Run-time deps aren't necessarily on the PATH, so we cannot rely on
configure finding it.

N.B. on cross `-z` support is assumed missing, which is an incorrect
assumption.
2017-08-16 11:26:18 -04:00
Michael Weiss
bc24294ea5 maim: 5.4.67 -> 5.4.68 2017-08-16 10:37:35 +02:00
Moritz Ulrich
9fab349ef5
optipng: Workaround for issue 28106. 2017-08-16 10:25:02 +02:00
Michael Raskin
19a5e00985 Merge pull request #28212 from volth/fontforge-20170730
fontforge: 20160404 -> 20170730 + support reproducible builds of fonts
2017-08-15 20:50:04 +02:00
Volth
97db36a707 use sed instead of patch 2017-08-15 18:41:56 +00:00
edef
2fca91cbb2 keybase: 1.0.22 -> 1.0.27 2017-08-15 14:56:22 +02:00
Markus Hauck
9e9b177575 http-prompt: 0.9.1 -> 0.10.2 2017-08-15 14:53:17 +02:00
Bart Brouns
cdfa4882e4 das_watchdog: git-2015-04-02 -> git-2015-09-12 2017-08-15 14:51:21 +02:00
Marius Bergmann
1e9606adb7 keepalived: 1.3.5 -> 1.3.6 2017-08-15 14:50:31 +02:00
Tim Steinbach
135a841d91
curl: 7.55.0 -> 7.55.1 2017-08-14 19:21:47 +02:00
zimbatm
aa60296df6 direnv: 2.10.0 -> 2.12.2 2017-08-14 15:23:47 +01:00
Rickard Nilsson
3c136e5fa4 dpkg: 1.18.18 -> 1.18.24
Fixes CVE-2017-8283
2017-08-14 14:00:12 +02:00
Eelco Dolstra
9eb901b70d
Merge remote-tracking branch 'origin/gcc-6' into staging 2017-08-14 11:38:00 +02:00
Frederik Rietdijk
62dac1bdd9 Merge remote-tracking branch 'upstream/master' into HEAD 2017-08-14 09:34:10 +02:00
Franz Pletz
3317c71c5c
grub2: 2.x-2015-11-16 -> 2.02
Fixes #24451.
2017-08-14 07:57:15 +02:00
Michael Weiss
059d722e5c sshfs-fuse: 2.9 -> 2.10 2017-08-14 00:14:38 +02:00
Joachim F
6dc4d7445c Merge pull request #26313 from polynomial/gh-ost
gh-ost: init at 1.0.36
2017-08-13 21:11:47 +00:00
Frederik Rietdijk
946f536f93 Merge pull request #28205 from mimadrid/update/clib-1.8.0
clib: 1.7.0 -> 1.8.0
2017-08-13 22:34:29 +02:00
Frederik Rietdijk
719a76c41f Merge pull request #28213 from mimadrid/update/byobu-5.121
byobu: 5.112 -> 5.121
2017-08-13 22:04:21 +02:00
Frederik Rietdijk
8608ff5e9d Merge pull request #28242 from magnetophon/clipster
clipster: 1.0.1 -> 1.2.5
2017-08-13 22:01:31 +02:00
Frederik Rietdijk
13bbaee21d Merge pull request #27881 from mimadrid/fix/http-https
Update homepage attributes: http -> https
2017-08-13 21:53:20 +02:00
Vladimír Čunát
34946256a0
Merge #27424: stdenv: Don't put man pages into $doc 2017-08-13 19:32:51 +02:00
Bart Brouns
92d4efee8e clipster: 1.0.1 -> 1.2.5 2017-08-13 18:56:50 +02:00
Frederik Rietdijk
05212cd4d6 Merge pull request #28233 from jpierre03/pr-aescrypt
aescrypt: use https to fetch archive
2017-08-13 18:39:06 +02:00
Frederik Rietdijk
7ebcd39a0f Merge commit '4c49205' into HEAD 2017-08-13 18:34:59 +02:00
Volth
c4fb72cbb5 $SOURCE_DATE_EPOCH moved to preConfigure 2017-08-13 16:13:19 +00:00
Jean-Pierre PRUNARET
3fde711146 acoustid-fingerprinter: use https to fetch package 2017-08-13 09:12:17 -05:00
Peter Hoeg
d4f4f418b3 ddclient: minor packaging cleanups 2017-08-13 21:56:48 +08:00
Jean-Pierre PRUNARET
fd6db4f913 aescrypt: use https to fetch archive 2017-08-13 14:18:49 +02:00
Peter Hoeg
b9b00495d5 tboot: 1.8.2 -> 1.9.6 2017-08-13 19:31:33 +08:00
Joachim F
2ae4163059 Merge pull request #28215 from mimadrid/update/dateutils-0.4.2
dateutils: 0.4.1 -> 0.4.2
2017-08-13 11:05:34 +00:00
Frederik Rietdijk
2a8cd14d5f Merge remote-tracking branch 'upstream/master' into HEAD 2017-08-13 09:50:47 +02:00
mimadrid
32e329b1c7
dateutils: 0.4.1 -> 0.4.2 2017-08-13 01:01:07 +02:00
mimadrid
8933aca978
byobu: 5.112 -> 5.121 2017-08-13 00:50:34 +02:00
Volth
0385079696 fontforge: 20160404 -> 20170730 + support reproducible builds 2017-08-12 22:38:57 +00:00
Robin Gloster
c1b3dc3308
povray: 3.7 -> 3.7.0.3 2017-08-12 21:38:19 +02:00
mimadrid
8e178502e5
clib: 1.7.0 -> 1.8.0 2017-08-12 20:39:32 +02:00
Robin Gloster
7e5ebed971
coreutils: use autoreconfHook 2017-08-12 20:21:39 +02:00
Jörg Thalheim
78ebaf072f Merge pull request #28201 from mimadrid/update/axel-2.13.1
axel: 2.12 -> 2.13.1
2017-08-12 19:01:15 +01:00
Robin Gloster
4ebac8f702
lr: 0.3.2 -> 0.4 2017-08-12 18:27:08 +02:00
mimadrid
e01c538f4f
axel: 2.12 -> 2.13.1 2017-08-12 18:20:23 +02:00
Tristan Helmich
b80b54fbfb gti: 2016-12-07 -> 1.6.1 2017-08-12 13:19:27 +02:00
Jörg Thalheim
73d4e93597 Merge pull request #28183 from fadenb/SystemdJournal2Gelf
SystemdJournal2Gelf: 20160414 -> 20170413
2017-08-12 10:14:44 +01:00
Franz Pletz
94cadf33ba
nmap: 7.50 -> 7.60 2017-08-12 11:05:22 +02:00
Jörg Thalheim
8678292ab7 Merge pull request #27802 from jensbin/networkmanager_dmenu-update
networkmanager_dmenu: unstable-2017-05-28 -> 1.1
2017-08-12 10:03:04 +01:00
Tristan Helmich
7bcce71b8f SystemdJournal2Gelf: 20160414 -> 20170413 2017-08-12 10:59:21 +02:00
Vladimír Čunát
6899c7fdb9
Merge branch 'master' into gcc-6 2017-08-12 10:09:41 +02:00
Vladimír Čunát
e207d1f04a
Merge older staging
There's a security fix for curl.
2017-08-12 09:48:17 +02:00
Casey Rodarmor
a3103fb406 mpDris2: add mutagen for cover art support (#28063)
* mpDris2: add mutagen for cover art support

* mpdris2: move mutagen to `pythonPath`
2017-08-11 23:49:05 +01:00
Robin Gloster
519c254a41
screenfetch: fix man path 2017-08-11 22:42:10 +02:00
Robin Gloster
51092fd0c3
tlspool: don't create unused directories 2017-08-11 22:40:12 +02:00
Tuomas Tynkkynen
1a0f8263fe texlive: Fix fallout from man/info/doc output changes 2017-08-11 21:32:55 +03:00
Tuomas Tynkkynen
6aa074f17b e2fsprogs: Split info pages to own output
They weren't actually getting built due to missing texinfo, but it was
creating an empty $man/share/info anyway.
2017-08-11 21:32:54 +03:00
Tuomas Tynkkynen
1ff422aa23 treewide: Add man & info outputs where necessary (instead of doc)
Because man & info pages won't be going to $doc after the next commit.
Scripted change for the files having one-package-per-file.
2017-08-11 21:32:54 +03:00
Lancelot SIX
e34ce9d1c5 gnupg: 2.1.22 -> 2.1.23
This release in a RC for gnupg-2.2. The main difference as far as
nixpkgs is concerned is that the binary `gpg2` is now called `gpg` and
`gpgv2` is called `gpgv`.

This update fixed all explicit use of `gpg2` and `gpgv2` across nixpkgs,
but there might be some packaged software that internally use `gpg2`
not handeled by this commit.

See http://lists.gnu.org/archive/html/info-gnu/2017-08/msg00001.html
for full release information
2017-08-11 19:24:06 +02:00
Frederik Rietdijk
d8f08bb088 Merge pull request #28061 from grantwwu/bump_libtorrentRasterbar_1.1.4
libtorrentRasterbar 1.1.1 -> 1.1.4
2017-08-11 19:13:44 +02:00
Jörg Thalheim
7f9ac0eca9 Merge pull request #28125 from ericsagnes/pkg-update/asciidoctor
asciidoctor: use ruby 2.3
2017-08-11 18:05:20 +01:00
Peter Hoeg
b6f7713d33 Merge pull request #28127 from peterhoeg/f/collectd
influxdb (on nixos): reduce closure size by 99.99% (and a bit)
2017-08-12 00:01:46 +08:00
Robin Gloster
14080832b0
spCompat: remove
not used anymore
2017-08-11 13:26:50 +02:00
Tristan Helmich
25f3cf0300 graylogPlugins: update/extend plugins 2017-08-11 13:07:30 +02:00
Tristan Helmich
8648468833 graylog: 2.2.3 -> 2.3.0 2017-08-11 13:07:30 +02:00
Domen Kožar
486e1c3c16 Merge pull request #27998 from davidak/macOS
replace "Mac OS X" and "OS X" with "macOS"
2017-08-11 13:01:36 +02:00
Michael Weiss
3cbc3ddf31 maim: 5.4.66 -> 5.4.67 2017-08-11 12:38:50 +02:00
Michael Weiss
6a8c520fbc slop: 7.3.48 -> 7.3.49 2017-08-11 12:32:56 +02:00
Robin Gloster
28cc2642f0
treewide: use less phases if not necessary
This removes some skipping of e.g. fixupPhase and cleans up occurences
where this led to duplicating code
2017-08-11 11:40:36 +02:00
Eric Sagnes
3d8f85797a asciidoctor: use ruby 2.3 2017-08-11 11:13:31 +09:00
Peter Hoeg
719aa35c0c collectd-data: init at 5.7.0 - contains just data files from collectd 2017-08-11 09:47:27 +08:00
Frederik Rietdijk
9f73f22c64 Merge commit 'b1f5305abd7b1b3d7ed180d9d00301da6e323e41' into HEAD 2017-08-10 19:26:16 +02:00
Franz Pletz
b44bed5568
curl: 7.54.1 -> 7.55.0
Fixes #28073.

Fixes CVE-2017-1000101, CVE-2017-1000100, CVE-2017-1000099.
2017-08-10 16:22:56 +02:00
Robin Gloster
c438fe5a16
system-config-printer: fix wrapProgram call 2017-08-10 15:15:44 +02:00
Muhammad Herdiansyah
b5ea89f50c neofetch: 3.0.1 -> 3.2.0 2017-08-10 19:32:57 +07:00
Frederik Rietdijk
b0c30f436e Merge remote-tracking branch 'upstream/master' into HEAD 2017-08-10 10:41:23 +02:00
Frederik Rietdijk
c2ef89aac9 Merge pull request #28094 from Infinisil/gist-update
gist: 4.5.0 -> 4.6.1
2017-08-10 10:20:39 +02:00
Jens Binkert
75078b9116 networkmanager_dmenu: unstable-2017-05-28 -> 1.1 2017-08-10 08:38:52 +02:00
Peter Hoeg
b224644795 unetbootin: 613 -> 655 2017-08-10 10:58:04 +08:00
Silvan Mosberger
310563fab8
gist: 4.5.0 -> 4.6.1 2017-08-10 04:52:16 +02:00
Grant Wu
e77068d082 Add note to libtorrent to prevent conflation with libtorrentRasterbar 2017-08-09 22:21:36 -04:00
Daiderd Jordan
e5f0c4f840 Merge pull request #28056 from matthewbauer/miniupnpc-fix
miniupnpc: fix on darwin
2017-08-10 00:08:10 +02:00
Matthew Bauer
c7f14143c4 miniupnpc: fix on darwin
For some reason miniupnpc needs libtool for static linking. Probably not ideal
but it’s doing similar on other platforms as well (using ar).
2017-08-09 13:10:23 -07:00
Willi Butz
2e29774f4c volatility: 2.4 -> 2.6, refactor, update outdated homepage 2017-08-09 21:50:21 +02:00
Willi Butz
4872be756d monit: 5.20.0 -> 5.23.0 2017-08-09 21:50:21 +02:00
Simon Lackerbauer
30d76b8ccd seafile-client: 5.0.7 -> 6.1.0
bump to qt5
2017-08-09 19:53:05 +02:00
Robin Gloster
25c12d0abf
screenfetch: fix wrapProgram usage 2017-08-09 17:35:59 +02:00
adisbladis
9cd05278a6 vulnix: use zodb from pythonPackages 2017-08-09 14:51:01 +02:00
Robin Gloster
c00a95be63
nix-prefetch-git: fix wrapProgram call 2017-08-08 21:45:46 +02:00
Frederik Rietdijk
89af5d93e6 Merge remote-tracking branch 'upstream/master' into HEAD 2017-08-08 09:01:54 +02:00
Franz Pletz
9d29bed078 Merge pull request #28020 from michalrus/geekbench
geekbench: init at 4.1.1
2017-08-08 02:14:03 +02:00
Michal Rus
a809cf409a
geekbench: init at 4.1.1 2017-08-08 01:28:12 +02:00
davidak
3270aa896b replace "Mac OS X" and "OS X" with "macOS"
as it is the official name since 2016

https://en.wikipedia.org/wiki/Macintosh_operating_systems#Desktop

exception are parts refering to older versions of macOS like

"GUI support for Mac OS X 10.6 - 10.12. Note that Emacs 23 and later [...]"
2017-08-07 21:41:30 +02:00
Wout Mertens
ba203e40a6 Merge pull request #28010 from womfoo/bump/facter-3.7.1
facter: 3.6.6 -> 3.7.1 and related deps
2017-08-07 18:32:03 +02:00
Wout Mertens
5df2798221 Merge pull request #28011 from womfoo/bump/zabbix-cli-1.7.0
zabbix-cli: 1.6.1 -> 1.7.0
2017-08-07 18:31:11 +02:00
Kranium Gikos Mendoza
bcc2858485 pick: 1.6.1 -> 1.7.0 2017-08-08 01:22:44 +10:00
Kranium Gikos Mendoza
a852d39dda zabbix-cli: 1.6.1 -> 1.7.0 2017-08-08 01:02:38 +10:00
Kranium Gikos Mendoza
b99f162e40 facter: 3.6.6 -> 3.7.1 2017-08-08 00:37:43 +10:00
Frederik Rietdijk
1271e5e0d4 Merge remote-tracking branch 'upstream/master' into HEAD 2017-08-07 13:05:31 +02:00
John Ericson
a8bd415fa0 unzip: cc-wrapper has been fixed so don't need to be so clever 2017-08-07 03:05:51 -04:00
Joachim Fasting
a40bf20a1d
pigz: enable parallel building 2017-08-06 23:38:15 +02:00
Joachim Fasting
d56361f036
pigz: 2.3.3 -> 2.3.4 2017-08-06 23:38:14 +02:00
Joachim Fasting
4a65f9ef5f
dnscrypt-proxy: enable parallel building 2017-08-06 23:38:13 +02:00
Symphorien Gibol
aec9f1b9d8 par2cmdline: 0.6.13 -> 0.7.3 2017-08-06 14:50:15 +02:00
Michael Weiss
4b0afc169d zpl*: Fix the attribute name of the license
This was simply a typo since the license was added in 2013.
2017-08-06 13:49:18 +02:00
Tim Steinbach
74998657c7 Merge pull request #27902 from LumiGuide/flockit
flockit: init at 2012-08-11
2017-08-05 18:54:27 -04:00
Bas van Dijk
872d8fc5c9 flockit: init at 2012-08-11
The flockit library and tool exists solely because rsync doesn't have file
locking.

It's not used like a normal library; you don't link against it, and you don't
have to patch your source code to use it. It's inserted between your program and
its libraries by use of LD_PRELOAD.

For example:

  $ env LD_PRELOAD=$(nix-build -A pkgs.flockit)/lib/libflockit.so FLOCKIT_FILE_PREFIX=test rsync SRC DEST

Besides the library a handy executable is provided which can simplify the above to:

  $ $(nix-build -A pkgs.flockit)/bin/flockit test rsync SRC DEST

Also see the following blog post:
https://www.swiftstack.com/blog/2012/08/15/old-school-monkeypatching/
2017-08-06 00:38:29 +02:00
Jan Tojnar
c9d419a22b gnome: Further fixes for Using the 'memory' GSettings backend issue 2017-08-05 12:21:00 +02:00
Robin Gloster
1da02642bc
logrotate: 3.9.1 -> 3.12.3, fix build
closes #27916
2017-08-04 17:14:55 +02:00
Franz Pletz
a038866c97
facter: 3.6.4 -> 3.6.6 2017-08-04 08:26:30 +02:00
Willi Butz
33b9e68b1a
kea: fix substituteInPlace usage 2017-08-04 08:26:10 +02:00
Franz Pletz
b129c994c8
irods: 4.2.0 -> 4.2.1 2017-08-04 08:26:09 +02:00
Robin Gloster
a4647bc33f
tlsdate: remove
Dead and does not build with openssl 1.1.
Debian has removed it, too.
2017-08-04 02:24:03 +02:00
Jörg Thalheim
3badb04866 Merge pull request #27914 from mbrgm/upgrade-journalbeat
journalbeat: 5.4.1 -> 5.5.0
2017-08-04 00:02:16 +01:00
Robin Gloster
264d6641ec
privoxy: fix weird use of STRIP in the Makefile 2017-08-03 23:19:41 +02:00
Cillian de Róiste
847fbea098 ttfautohint: fix homepage 2017-08-03 23:03:04 +02:00
Marius Bergmann
4a93ce179d journalbeat: 5.4.1 -> 5.5.0 2017-08-03 22:23:53 +02:00
davidak
31870ae18d restic: enable darwin builds 2017-08-03 16:37:04 +02:00
mimadrid
09e0cc7cc7
Update homepage attributes: http -> https
Homepage link "http://.../" is a permanent redirect to "https://.../" and should be updated
https://repology.org/repository/nix_stable/problems
2017-08-03 11:56:15 +02:00
Charles Strahan
e50f3d37e9
envoy: init at 1.3.0
L7 proxy and communication bus designed for large modern service
oriented architectures.

See: https://lyft.github.io/envoy/
2017-08-03 00:38:33 -04:00
Joachim F
be6170d803 Merge pull request #27862 from mbrgm/upgrade-restic
restic: 0.7.0 -> 0.7.1
2017-08-02 19:15:29 +01:00
Joachim Fasting
4751fca48c
tor: 0.3.0.9 -> 0.3.0.10
Fixes TPROXY on linux, fixes potential DOS on openbsd.
Otherwise mostly minor bugfixes.
2017-08-02 20:05:05 +02:00
Yann Hodique
45fb1c94d7 fzf: 0.16.10 -> 0.16.11 2017-08-02 12:02:23 +02:00
Marius Bergmann
42d93e9724 restic: 0.7.0 -> 0.7.1 2017-08-02 08:16:47 +02:00
Michael Weiss
4472928a1d maim: 5.4.65 -> 5.4.66 2017-08-02 01:52:04 +02:00
Michael Weiss
40c2559851 slop: 6.3.48 -> 7.3.48 2017-08-02 01:49:22 +02:00
Silvan Mosberger
f5fa5fa4d6 pkgs: refactor needless quoting of homepage meta attribute (#27809)
* pkgs: refactor needless quoting of homepage meta attribute

A lot of packages are needlessly quoting the homepage meta attribute
(about 1400, 22%), this commit refactors all of those instances.

* pkgs: Fixing some links that were wrongfully unquoted in the previous
commit

* Fixed some instances
2017-08-01 22:03:30 +02:00
Frederik Rietdijk
6c8c4f5182 Merge pull request #27852 from mimadrid/update/gnuplot-5.0.6
gnuplot: 5.0.3 -> 5.0.6
2017-08-01 21:50:12 +02:00
mimadrid
2a00ff4a1c
gnuplot: 5.0.3 -> 5.0.6 2017-08-01 20:58:48 +02:00
Thomas Tuegel
bded592a8e
Revert "otfcc: init at 0.8.6"
This reverts commit f3a54b014c.
2017-08-01 06:23:57 -05:00
Robin Gloster
a434da450b
altermime: 0.3.10 -> 0.3.11 2017-08-01 12:34:12 +02:00
Franz Pletz
5bfc47bbab
catdoc: add to patch fix CVE-2017-11110 2017-08-01 10:26:19 +02:00
Jörg Thalheim
22f380c5f9 Merge pull request #27783 from 8573/8573/pkg/add/rust/fd-sharkdp/1
fd: init at 2.0.0
2017-08-01 08:05:37 +01:00
Franz Pletz
fd647dc0cf
hashcat3: 3.10 -> 3.6.0
Upstream switched versioning scheme.
2017-08-01 08:36:39 +02:00
Franz Pletz
8e5515bdcb
ipmiutil: 3.0.2 -> 3.0.5 2017-08-01 08:36:38 +02:00
Franz Pletz
6d9bdb55fc
wavemon: 0.7.6.20151001 -> 0.8.1 2017-08-01 08:36:38 +02:00
Franz Pletz
44d28369a3
speedtest-cli: 1.0.4 -> 1.0.6 2017-08-01 08:36:38 +02:00
Franz Pletz
93ef0b3852
brasero: 3.12.1 -> 3.12.2 2017-08-01 08:36:37 +02:00
Franz Pletz
fead9a62eb
pdfgrep: 1.3.1 -> 2.0.1 2017-08-01 08:36:35 +02:00
Franz Pletz
1ece82dc95
openntpd: 6.0p1 -> 6.2p1 2017-08-01 08:36:35 +02:00
Franz Pletz
3cdacdca2e
zerofree: 1.0.4 -> 1.1.0 2017-08-01 08:36:34 +02:00
Franz Pletz
523f343084
pcsclite: 1.8.21 -> 1.8.22 2017-08-01 08:36:29 +02:00
Franz Pletz
aaee055dae
lxd: 2.14 -> 2.16 2017-08-01 06:16:03 +02:00
Franz Pletz
46a4fa9274
inadyn: 2.0 -> 2.1, fix build with libite 1.9 2017-08-01 06:16:03 +02:00
Franz Pletz
d40f993073
fail2ban: 0.9.6 -> 0.9.7 2017-08-01 06:16:03 +02:00
Thomas Tuegel
f3a54b014c
otfcc: init at 0.8.6 2017-07-31 19:58:38 -05:00
Franz Pletz
a67445509b
radvd: 2.16 -> 2.17 2017-07-31 12:47:37 +02:00
Franz Pletz
b68fdfb619
whois: 5.2.16 -> 5.2.17 2017-07-31 12:34:25 +02:00
Franz Pletz
86eb01778d
youtubeDL: 2017.07.09 -> 2017.07.30.1 2017-07-31 12:34:01 +02:00
Martin Wohlert
c40ac69ec3 gnupg: 2.1.21 -> 2.1.22
https://lists.gnupg.org/pipermail/gnupg-announce/2017q3/000411.html
2017-07-31 11:44:18 +02:00
Frederik Rietdijk
740d76371e Merge commit 'ba68231273bea4cba01413fd2a0e56d68db9234c' into HEAD 2017-07-31 09:12:15 +02:00
Peter Hoeg
497e04a698 smartmontools: use slightly newer drive DB 2017-07-31 14:15:05 +08:00
c74d
925a4ba460 fd: init at 2.0.0
Add the package `fd`, a simpler alternative to `find`, at version
2.0.0.

I have tested this change per nixpkgs manual section 13.1 ("Making
patches").
2017-07-30 23:21:36 +00:00
mimadrid
1e049308c0 parallel: 20170522 -> 20170722 2017-07-30 21:39:41 +02:00
mimadrid
3e6e05bf98 mawk: 1.3.4-20141206 -> 1.3.4-20161120 2017-07-30 20:58:48 +02:00
mimadrid
0f14dcc189 mosh: 1.3.0 -> 1.3.2 2017-07-30 20:58:24 +02:00
Russell O'Connor
f0ff1224f7 tarsnap: 1.0.38 -> 1.0.39 2017-07-30 20:58:07 +02:00
Jörg Thalheim
25bb529245 Merge pull request #27709 from binarin/fzf-share
fzf: add script for finding 'share' folder
2017-07-30 10:16:41 +01:00
vinymeuh
c152e7c5d9 most supported on all unix, not only gnu 2017-07-30 09:18:12 +02:00
Frederik Rietdijk
20b8e4b4cf Merge remote-tracking branch 'upstream/master' into HEAD 2017-07-30 08:09:11 +02:00
Michael Weiss
bc8b634072 maim: 5.4.64 -> 5.4.65 2017-07-30 00:59:08 +02:00
Michael Weiss
6f2715e47d slop: 6.3.47 -> 6.3.48 2017-07-30 00:54:57 +02:00
Robert Helgesson
9d4d62923a
fgallery: add support for facedetect 2017-07-29 17:01:54 +02:00
Robert Helgesson
138dd4f9f1
fgallery: 1.8 -> 1.8.2 2017-07-29 17:01:53 +02:00
Robert Helgesson
a444b34b52
facedetect: init at 0.1 2017-07-29 15:07:19 +02:00
Frederik Rietdijk
b2608b8910 Merge remote-tracking branch 'upstream/master' into HEAD 2017-07-29 13:08:11 +02:00
Frederik Rietdijk
1c94c54c4a cli53: fix build 2017-07-29 13:04:07 +02:00
Muhammad Herdiansyah
6b473df9cc ostree: 2016.11 -> 2017.9 2017-07-29 03:28:06 +07:00
adisbladis
fcb6e72ddf vulnix: use zc_lockfile, zodbpickle and persistent from pythonPackages 2017-07-28 16:13:28 +02:00
Franz Pletz
b116fa5ff2
Merge branch 'master' into staging 2017-07-28 16:08:30 +02:00
Tuomas Tynkkynen
d2f45babe3 xfstests: Use keyutils 2017-07-28 16:24:59 +03:00
Frederik Rietdijk
e01181a32c Merge pull request #27708 from konimex/bubblewrap
bubblewrap: init at 0.1.8
2017-07-28 14:55:36 +02:00
aszlig
6e5d2f8963
nixos/xserver: Properly validate XKB options
Checking the keyboard layout has been a long set of hurdles so far, with
several attempts. Originally, the checking was introduced by @lheckemann
in #23709.

The initial implementation just was trying to check whether the symbols/
directory contained the layout name.

Unfortunately, that wasn't enough and keyboard variants weren't
recognized, so if you set layout to eg. "dvorak" it will fail with an
error (#25526).

So my improvement on that was to use sed to filter rules/base.lst and
match the layout against that. I fucked up twice with this, first
because layout can be a comma-separated list which I didn't account for
and second because I ran into a Nix issue (NixOS/nix#1426).

After fixing this, it still wasn't enough (and this is btw. what
localectl also does), because we were *only* matching rules but not
symbols, so using "eu" as a layout won't work either.

I decided now it's the time to actually use libxkbcommon to try
compiling the keyboard options and see whether it succeeds. This comes
in the form of a helper tool called xkbvalidate.

IMHO this approach is a lot less error-prone and we can be sure that we
don't forget about anything because that's what the X server itself uses
to compile the keymap.

Another advantage of this is that we now validate the full set of XKB
options rather than just the layout.

Tested this against a variety of wrong and correct keyboard
configurations and against the "keymap" NixOS VM tests.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
Cc: @lheckemann, @peti, @7c6f434c, @tohl, @vcunat, @lluchs
Fixes: #27597
2017-07-28 12:39:55 +02:00
Alexey Lebedeff
7723d9935f fzf: add script for finding 'share' folder
So that helper scripts can be easily sourced in interactive shell
configuration. `autojump` package was already present and had the same
requirements for findind a `share` folders, so I took an inspiration
there.

I beleive this is a better alternative to:
- https://github.com/NixOS/nixpkgs/pull/25080
- https://github.com/NixOS/nixpkgs/pull/27058

Replacing `$out/share/shell` with `$bin/share/fzf` was necessary to
prevent dependency loop in produced derivations.
2017-07-28 12:48:11 +03:00
Muhammad Herdiansyah
159be2e4f5 bubblewrap: init at 0.1.8 2017-07-28 16:26:12 +07:00
Robert Helgesson
fc75595236
gmic: remove myself as maintainer 2017-07-27 22:54:53 +02:00
Robert Helgesson
78815d0c51
mimeo: 2017.2.9 -> 2017.6.6 2017-07-27 22:53:55 +02:00
Volth
688dc4e4c3 tinc_pre: avoid infinite loop with EBADFD on network restart 2017-07-27 18:04:33 +02:00
Eelco Dolstra
8dfa472178 Merge pull request #27690 from konimex/nawk
nawk: init at 20121220
2017-07-27 17:01:51 +02:00
Muhammad Herdiansyah
d31e7ee1bd nawk: init at 20121220 2017-07-27 21:51:10 +07:00
Nikolay Amiantov
9ffdbe3853 update-resolv-conf: 2016-09-30 -> 2017-06-21 2017-07-27 17:07:45 +03:00
Nikolay Amiantov
a90fb0f550 dropbear: 2016.74 -> 2017.75 2017-07-27 17:07:45 +03:00
Nikolay Amiantov
21ad2a1631 virtualglLib: 2.5.1 -> 2.5.2 2017-07-27 17:07:45 +03:00
Frederik Rietdijk
a905b7cd0c Merge pull request #27599 from vidbina/merge/qesteidutil/master
qesteidutil: 3.12.2.1206 -> 3.12.5.1233
2017-07-27 09:20:17 +02:00
Daiderd Jordan
7cd9779488
upx: fix clang build 2017-07-26 23:24:49 +02:00
Sander van der Burg
94f0a6793b disnix: 0.7.1 -> 0.7.2 2017-07-26 19:22:19 +00:00
John Ericson
9be40841ea Merge remote-tracking branch 'upstream/master' into staging-base
Conflicts:
	pkgs/build-support/cc-wrapper/default.nix
	pkgs/build-support/gcc-wrapper-old/builder.sh
	pkgs/build-support/trivial-builders.nix
	pkgs/desktops/kde-4.14/kde-package/default.nix
	pkgs/development/compilers/openjdk-darwin/8.nix
	pkgs/development/compilers/openjdk-darwin/default.nix
	pkgs/development/compilers/openjdk/7.nix
	pkgs/development/compilers/openjdk/8.nix
	pkgs/development/compilers/oraclejdk/jdk-linux-base.nix
	pkgs/development/compilers/zulu/default.nix
	pkgs/development/haskell-modules/generic-builder.nix
	pkgs/misc/misc.nix
	pkgs/stdenv/generic/builder.sh
	pkgs/stdenv/generic/setup.sh
2017-07-26 13:46:04 -04:00
Robin Gloster
27800258e1 aws-auth: clean up 2017-07-26 18:45:41 +02:00
Robert Scott
2989324d60 aws-auth: init at unstable-2017-07-24 2017-07-26 18:45:41 +02:00
Robin Gloster
4a787b292a mailutils: clean up and fix last test 2017-07-26 13:32:59 +02:00
Orivej Desh
1ec5b7f1d3 mailutils: 2.2 -> 3.2 2017-07-26 13:32:59 +02:00
Peter Hoeg
998a0e818e crudini: actually run tests and install docs/man 2017-07-26 13:00:29 +08:00
Charles Strahan
cadb42fafb
honcho: 0.6.6 -> 1.0.1 2017-07-25 23:22:01 -04:00
Graham Christensen
8a8c13f9df Merge pull request #27622 from dtzWill/update/haproxy-1.7.8
haproxy: 1.7.3 -> 1.7.8
2017-07-25 21:27:51 -04:00
Franz Pletz
b33b40036b
ddccontrol: disable bindnow hardening
Caused segfaults. Fixes #27612.
2017-07-25 22:58:25 +02:00
Lluís Batlle i Rossell
f338e99039 zstd: 1.2.0 -> 1.3.0 2017-07-25 17:57:50 +02:00
Tuomas Tynkkynen
62cd492c82 xfstests: Use the newly added quota package 2017-07-25 17:29:21 +03:00
Tuomas Tynkkynen
dd248fad87 xfstests: 2017-03-26 -> 2017-07-16 2017-07-25 17:29:21 +03:00
Tuomas Tynkkynen
c1597af1f2 dateutils: Fix whitespace 2017-07-25 17:29:21 +03:00
Tuomas Tynkkynen
b3b1ae67e5 quota: init at 4.03 2017-07-25 17:29:21 +03:00
Tim Steinbach
4a4a33ff88 Merge pull request #27582 from NeQuissimus/remove_accelio
accelio: Remove
2017-07-25 09:17:23 -04:00
Eelco Dolstra
ecaef62bd9
cdrdao: Fix build on gcc 6
http://hydra.nixos.org/build/56889707
2017-07-25 12:01:38 +02:00
Jörg Thalheim
fb9120d5e7 Merge pull request #27613 from therealpxc/tidy
html-tidy: 5.2.0 -> 5.4.0
2017-07-25 07:40:07 +01:00
Charles Strahan
c1fdf3341b Merge pull request #27347 from cstrahan/osquery-new
osquery: init at 2.5.2
2017-07-24 21:51:10 -04:00
Charles Strahan
232c34b8f4
osquery: use packaged sqlite and gtest/gmock 2017-07-24 21:48:08 -04:00
Charles Strahan
53426f6cb9
osquery: init at 2.5.2 2017-07-24 21:47:32 -04:00
Will Dietz
269976c45a haproxy: 1.7.3 -> 1.7.8 2017-07-24 13:44:53 -05:00
Tobias Geerinckx-Rice
275059c34a Merge pull request #27616 from jfrankenau/update-borg
borgbackup: 1.0.10 -> 1.0.11
2017-07-24 18:44:21 +00:00
Johannes Frankenau
c6e52bc430 borgbackup: 1.0.10 -> 1.0.11 2017-07-24 19:04:07 +02:00
Patrick Callahan
edef4459f6 html-tidy: 5.2.0 -> 5.4.0 2017-07-24 09:19:03 -07:00
Jörg Thalheim
3b6215e565 Merge pull request #27564 from vyp/upd/setroot
setroot: 1.4.4 -> 2.0.1
2017-07-24 14:41:04 +01:00
Silvan Mosberger
f4a8e6ab7f znapzend: 0.15.7 -> 0.17.0 2017-07-24 05:01:08 +02:00
Peter Hoeg
dcd6467936 xxd: init at 8.0.0442 2017-07-24 09:37:58 +08:00
David Asabina
97cc4fdd9e qesteidutil: 3.12.2.1206 -> 3.12.5.1233 2017-07-24 01:13:35 +02:00