summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2019-06-16treewide: remove unused variables (#63177)volth
* treewide: remove unused variables * making ofborg happy
2019-06-16bmake: fix version/url, fix tests, remove unneeded depsAustin Seipp
As noted by @jameysharp in #63181. Signed-off-by: Austin Seipp <as@fastly.com>
2019-06-16Merge pull request #62934 from lilyball/macvimMatthew Bauer
macvim: 7.4.909 -> 8.1.1517
2019-06-16Merge pull request #62971 from lilyball/bundlerApp-passthruMatthew Bauer
bundlerApp: Set up passthru properly
2019-06-16doc/stdenv: fix typoJan Tojnar
2019-06-16Merge pull request #63223 from r-ryantm/auto-update/btrfs-progsMichael Raskin
btrfs-progs: 5.1 -> 5.1.1
2019-06-16Merge pull request #62916 from xrelkd/update/alacrittyMario Rodas
alacritty: 0.3.2 -> 0.3.3
2019-06-16doc: describe pnameJan Tojnar
This was forgotten when RFC 0035 was implemented.
2019-06-16abcmidi: 2019.04.22 -> 2019.06.06R. RyanTM
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/abcmidi/versions
2019-06-16hwinfo: 21.64 -> 21.66Bob van der Linden
2019-06-16pythonPackages.django-sites: fix build, flesh out commentsRobert Scott
2019-06-16theft: 0.4.4 -> 0.4.5, fix pkg-config fileAustin Seipp
The libtheft.pc file was using prefix=/usr/local for its own relative -L/-l/-I parameters for GCC, giving incorrect results. (This is really more of an upstream bug.) This also adds myself to the maintainer list, and enables builds on non-Linux platforms. Signed-off-by: Austin Seipp <as@fastly.com>
2019-06-16antibody: 4.1.1 -> 4.1.2 (#63210)R. RyanTM
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/antibody/versions
2019-06-17alacritty: 0.3.2 -> 0.3.3xrelkd
2019-06-16btrfs-progs: 5.1 -> 5.1.1R. RyanTM
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/btrfs-progs/versions
2019-06-16nixos-generate-config: don't emit tmpfs entry for /tmpBjørn Forsman
Because it most likely comes from the boot.tmpOnTmpfs option in configuration.nix (managed declaratively).
2019-06-16slack: Generalize themingTim Steinbach
Split out dark theme Fixes #61155
2019-06-16ammonite: 1.6.7 -> 1.6.8R. RyanTM
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/ammonite/versions
2019-06-16nixos-generate-config: add dm-snapshot module if LVM is detectedBjørn Forsman
Without this, the system becomes unbootable if the user creates a LVM snapshot and reboots. Fixes https://github.com/NixOS/nixpkgs/issues/33646 (The same kind of problem was fixed in RHEL a few years back: https://bugzilla.redhat.com/show_bug.cgi?id=1287940)
2019-06-16nixos-generate-config: don't generate swapDevices for *files*Bjørn Forsman
Up until now, the output has been the same for swap devices and swap files: { device = "/var/swapfile"; } Whereas for swap *files* it's easier to manage them declaratively in configuration.nix: { device = "/var/swapfile"; size = 8192; } (NixOS will create the swapfile, and later resize it, if the size attribute is changed.) With the assumption that swap files are specified in configuration.nix, it's silly to output them to hardware-configuration.nix.
2019-06-16maintainers: add GPG key for ryceeRobert Helgesson
2019-06-16Merge pull request #63194 from flokli/afew-2.0.0Andreas Rammhold
afew: 1.3.0 -> 2.0.0
2019-06-16Merge pull request #63180 from worldofpeace/gthumb/3.8.0worldofpeace
gthumb: 3.6.2 -> 3.8.0
2019-06-16zziplib: patch CVE-2018-17828Marek Mahut
Fixes https://github.com/NixOS/nixpkgs/issues/61961 Close https://github.com/NixOS/nixpkgs/pull/63189 vcunat amended some nitpicks into the original commit.
2019-06-16gnome-mpv: use external patchJan Tojnar
2019-06-16Merge pull request #63179 from lightbulbjim/gnome-mpv-updateJan Tojnar
gnome-mpv: 0.13 -> 0.16
2019-06-16gns3Packages.{server,gui}Preview: 2.2.0b2 -> 2.2.0b3Michael Weiss
2019-06-16afew: 1.3.0 -> 2.0.0Florian Klink
2019-06-16mutt: 1.12.0 -> 1.12.1Matthias Beyer
2019-06-16Merge pull request #61983 from nikuda/masterJaka Hudoklin
confluent-platform: Rename confluent package and update to 5.2.1
2019-06-16Merge pull request #63160 from basvandijk/opencv-4.1.0Bas van Dijk
opencv: 4.0.1 -> 4.1.0
2019-06-16Merge pull request #63162 from basvandijk/opencv-3.4.6Bas van Dijk
opencv: 3.4.5 -> 3.4.6
2019-06-16Merge pull request #63139 from yrashk/picolisp-w3m-helpMichael Raskin
picolisp: fix help functionality
2019-06-15picolisp: fix help functionalityYurii Rashkovskii
Currently, trying to use help results in something like this: ``` : (help 'db) ======================================== w3m: Can't exec ======================================= ``` By including `w3m` as an input, the behaviour changes to: ``` : (help 'db) ======================================== (db 'sym 'cls ['hook] 'any ['sym 'any ..]) -> sym | NIL Returns a database object of class cls, where the values for the sym arguments correspond to the any arguments. If a matching object cannot be found, NIL is returned. sym, cls and hook should specify a tree for cls or one of its superclasses. See also aux, collect, request, fetch, init and step. ======================================== -> db ```
2019-06-15bmake: init at 20121212Austin Seipp
Signed-off-by: Austin Seipp <as@fastly.com>
2019-06-16Merge pull request #63178 from mmahut/CVE-2019-12155Graham Christensen
qemu: CVE-2019-12155
2019-06-15liburing: 1.0.0pre132 -> 1.0.0pre137Austin Seipp
Signed-off-by: Austin Seipp <as@fastly.com>
2019-06-16gnome-mpv: 0.13 -> 0.16Chris Rendle-Short
2019-06-15gthumb: 3.6.2 -> 3.8.0worldofpeace
* enable clutter-gtk support Upstream defaults to it so we probably should as well.
2019-06-16nixos/enlightenment: fix build with config.allowAliases=false (#61421)Jan Tojnar
nixos/enlightenment: fix build with config.allowAliases=false
2019-06-15Merge pull request #63040 from worldofpeace/braveworldofpeace
brave: 0.61.50 -> 0.65.118
2019-06-15Merge pull request #63148 from marsam/init-reviewdogMario Rodas
reviewdog: init at 0.9.12
2019-06-16flatpak-builder: 1.0.6 -> 1.0.7 (#62413)Jan Tojnar
flatpak-builder: 1.0.6 -> 1.0.7
2019-06-16flatpak-builder: add installed testsJan Tojnar
2019-06-15qemu: CVE-2019-12155Marek Mahut
2019-06-15pythonPackages.matchpy: 0.4.6 -> 0.5.1, fix buildRobert Scott
2019-06-15pygraphviz: 1.3.1 -> 1.5Will Dietz
https://github.com/pygraphviz/pygraphviz/releases
2019-06-15Merge pull request #63140 from Izorkin/libreoffice-fixMichael Raskin
libreoffice: fix build
2019-06-15oh-my-zsh: 2019-06-12 -> 2019-06-15Tim Steinbach
2019-06-15linux: 5.1.9 -> 5.1.10Tim Steinbach