about summary refs log tree commit diff
path: root/pkgs/applications/networking/newsreaders
Commit message (Collapse)AuthorAge
* quiterss: 0.19.2 -> 0.19.3Michael Weiss2020-01-30
|
* pan: 0.145 -> 0.146R. RyanTM2019-12-01
|
* quiterss: 0.19.1 -> 0.19.2Michael Weiss2019-11-29
|
* quiterss: 0.19.0 -> 0.19.1Michael Weiss2019-11-17
|
* quiterss: 0.18.12 -> 0.19.0Michael Weiss2019-11-15
|
* treewide: drop adding hicolor-icon-theme where possibleworldofpeace2019-09-18
| | | | | This was either for the setup-hook to remove caches or added even though the respective icon theme propagated it.
* treewide: remove redundant quotesvolth2019-09-08
|
* tree-wide: s/GTK+/GTK/gJan Tojnar2019-09-06
| | | | GTK was renamed.
* treewide: name -> pnamevolth2019-08-17
|
* treewide: name -> pname (easy cases) (#66585)volth2019-08-15
| | | | | | | | | treewide replacement of stdenv.mkDerivation rec { name = "*-${version}"; version = "*"; to pname
* slrn: 1.0.2 -> 1.0.3aBenjamin Esham2019-08-08
|
* wrapQtAppsHook: Remove ad hoc Qt wrappersThomas Tuegel2019-07-05
|
* treewide: remove unused variables (#63177)volth2019-06-16
| | | | | | * treewide: remove unused variables * making ofborg happy
* liferea: 1.12.4 -> 1.12.6Vincent Laporte2019-01-25
|
* gcr: rename from gnome3.gcrworldofpeace2018-12-25
|
* gobject-introspection: rename packageJan Tojnar2018-12-02
| | | | camelCase package name was a huge inconsistency in GNOME package set.
* pan: clean upJan Tojnar2018-08-25
|
* quiterss: Set QT_PLUGIN_PATH (fixes a few problems)Michael Weiss2018-08-18
|
* Merge branch 'master' into staging-nextVladimír Čunát2018-08-12
|\ | | | | | | Hydra: ?compare=1472947
| * liferea: 1.12.3 -> 1.12.4R. RyanTM2018-08-08
| | | | | | | | Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/liferea/versions.
* | treewide: Make configureFlags listsJohn Ericson2018-08-03
|/
* Merge staging-next into master (#44009)Frederik Rietdijk2018-07-24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * substitute(): --subst-var was silently coercing to "" if the variable does not exist. * libffi: simplify using `checkInputs` * pythonPackges.hypothesis, pythonPackages.pytest: simpify dependency cycle fix * utillinux: 2.32 -> 2.32.1 https://lkml.org/lkml/2018/7/16/532 * busybox: 1.29.0 -> 1.29.1 * bind: 9.12.1-P2 -> 9.12.2 https://ftp.isc.org/isc/bind9/9.12.2/RELEASE-NOTES-bind-9.12.2.html * curl: 7.60.0 -> 7.61.0 * gvfs: make tests run, but disable * ilmbase: disable tests on i686. Spooky! * mdds: fix tests * git: disable checks as tests are run in installcheck * ruby: disable tests * libcommuni: disable checks as tests are run in installcheck * librdf: make tests run, but disable * neon, neon_0_29: make tests run, but disable * pciutils: 3.6.0 -> 3.6.1 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/pciutils/versions. * mesa: more include fixes mostly from void-linux (thanks!) * npth: 1.5 -> 1.6 minor bump * boost167: Add lockfree next_prior patch * stdenv: cleanup darwin bootstrapping Also gets rid of the full python and some of it's dependencies in the stdenv build closure. * Revert "pciutils: use standardized equivalent for canonicalize_file_name" This reverts commit f8db20fb3ae382eba1ba2b160fe24739f43c0bd7. Patching should no longer be needed with 3.6.1. * binutils-wrapper: Try to avoid adding unnecessary -L flags (cherry picked from commit f3758258b8895508475caf83e92bfb236a27ceb9) Signed-off-by: Domen Kožar <domen@dev.si> * libffi: don't check on darwin libffi usages in stdenv broken darwin. We need to disable doCheck for that case. * "rm $out/share/icons/hicolor/icon-theme.cache" -> hicolor-icon-theme setup-hook * python.pkgs.pytest: setupHook to prevent creation of .pytest-cache folder, fixes #40273 When `py.test` was run with a folder as argument, it would not only search for tests in that folder, but also create a .pytest-cache folder. Not only is this state we don't want, but it was also causing collisions. * parity-ui: fix after merge * python.pkgs.pytest-flake8: disable test, fix build * Revert "meson: 0.46.1 -> 0.47.0" With meson 0.47.0 (or 0.47.1, or git) things are very wrong re:rpath handling resulting in at best missing libs but even corrupt binaries :(. When we run patchelf it masks the problem by removing obviously busted paths. Which is probably why this wasn't noticed immediately. Unfortunately the binary already has a long series of paths scribbled in a space intended for a much smaller string; in my testing it was something like lengths were 67 with 300+ written to it. I think we've reported the relevant issues upstream, but unfortunately it appears our patches are what introduces the overwrite/corruption (by no longer being correct in what they assume) This doesn't look so bad to fix but it's not something I can spend more time on at the moment. -- Interestingly the overwritten string data (because it is scribbled past the bounds) remains in the binary and is why we're suddenly seeing unexpected references in various builds -- notably this is is the reason we're seeing the "extra-utils" breakage that entirely crippled NixOS on master (and probably on staging before?). Fixes #43650. This reverts commit 305ac4dade5758c58e8ab1666ad0197fd305828d. (cherry picked from commit 273d68eff8f7b6cd4ebed3718e5078a0f43cb55d) Signed-off-by: Domen Kožar <domen@dev.si>
* pkgs/*: remove unreferenced function argumentsvolth2018-07-21
|
* quiterss: 0.18.11 -> 0.18.12Michael Weiss2018-07-03
|
* quiterss: 0.18.10 -> 0.18.11Michael Weiss2018-06-06
|
* pan: 0.144 -> 0.145 (#40963)R. RyanTM2018-05-26
| | | | | | | | | | | | | | | | Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/pan/versions. These checks were done: - built on NixOS - /nix/store/myvdzpw4h622lqfbssrqq8iv0jlgmr3x-pan-0.145/bin/pan passed the binary check. - /nix/store/myvdzpw4h622lqfbssrqq8iv0jlgmr3x-pan-0.145/bin/.pan-wrapped passed the binary check. - 2 of 2 passed binary check by having a zero exit code. - 2 of 2 passed binary check by having the new version present in output. - found 0.145 with grep in /nix/store/myvdzpw4h622lqfbssrqq8iv0jlgmr3x-pan-0.145 - directory tree listing: https://gist.github.com/71c7135618028b366312a29248169c8f - du listing: https://gist.github.com/ab2cc751a6e4bb701fc4e8d6836d398e
* liferea: 1.12.2 -> 1.12.3Jon Banafato2018-05-05
| | | | | New patch release. Changelog at https://github.com/lwindolf/liferea/releases/tag/v1.12.3.
* quiterss: 0.18.9 -> 0.18.10Michael Weiss2018-04-17
|
* pan: ensure features we provide deps for are used, move to gtk3Will Dietz2018-03-21
|
* pan: wrap to provide gpg2, which it crashes withoutWill Dietz2018-03-21
| | | | Fixes #37556.
* pan: 0.139 -> 0.144Will Dietz2018-03-21
|
* liferea: 1.12.1 -> 1.12.2Ryan Mulligan2018-03-14
| | | | | | | | | | | | | | | | Semi-automatic update generated by https://github.com/ryantm/nix-update tools. These checks were done: - built on NixOS - ran `/nix/store/wjf8q5k0hh2vcjw65v2skcn54pq3vb0q-liferea-1.12.2/bin/liferea -h` got 0 exit code - ran `/nix/store/wjf8q5k0hh2vcjw65v2skcn54pq3vb0q-liferea-1.12.2/bin/liferea --help` got 0 exit code - ran `/nix/store/wjf8q5k0hh2vcjw65v2skcn54pq3vb0q-liferea-1.12.2/bin/liferea -v` and found version 1.12.2 - ran `/nix/store/wjf8q5k0hh2vcjw65v2skcn54pq3vb0q-liferea-1.12.2/bin/liferea --version` and found version 1.12.2 - ran `/nix/store/wjf8q5k0hh2vcjw65v2skcn54pq3vb0q-liferea-1.12.2/bin/.liferea-wrapped -h` got 0 exit code - ran `/nix/store/wjf8q5k0hh2vcjw65v2skcn54pq3vb0q-liferea-1.12.2/bin/.liferea-wrapped --help` got 0 exit code - ran `/nix/store/wjf8q5k0hh2vcjw65v2skcn54pq3vb0q-liferea-1.12.2/bin/.liferea-wrapped -v` and found version 1.12.2 - ran `/nix/store/wjf8q5k0hh2vcjw65v2skcn54pq3vb0q-liferea-1.12.2/bin/.liferea-wrapped --version` and found version 1.12.2 - found 1.12.2 with grep in /nix/store/wjf8q5k0hh2vcjw65v2skcn54pq3vb0q-liferea-1.12.2 - found 1.12.2 in filename of file in /nix/store/wjf8q5k0hh2vcjw65v2skcn54pq3vb0q-liferea-1.12.2
* tree-wide: autorename gnome packages to use dashesJan Tojnar2018-02-25
|
* redshift, liferea: remove the extra cache fileVladimír Čunát2018-02-18
| | | | They're not really useful and cause collisions in envs.
* liferea: 1.12.0 -> 1.12.1Jon Banafato2017-12-27
| | | | Liferea has a new bugfix release.
* liferea: 1.12-rc3 -> 1.12.0Vladimír Čunát2017-12-16
|
* quiterss: 0.18.8 -> 0.18.9Michael Weiss2017-12-03
|
* misc pkgs: Basic sed to get fix `pkgconfig` and `autoreconfHook` `buildInputs`John Ericson2017-09-21
| | | | Only acts on one-line dependency lists.
* quiterss: 0.18.7 -> 0.18.8Michael Weiss2017-08-25
|
* quiterss: 0.18.6 -> 0.18.7Michael Weiss2017-08-24
|
* pkgs: refactor needless quoting of homepage meta attribute (#27809)Silvan Mosberger2017-08-01
| | | | | | | | | | | | * 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
* quiterss: 0.18.5 -> 0.18.6Michael Weiss2017-06-20
|
* qt5: remove makeQtWrapperThomas Tuegel2017-06-18
|
* qt5: rename qmakeHook to qmakeThomas Tuegel2017-06-18
|
* quiterss: 0.18.4 -> 0.18.5Michael Weiss2017-06-17
|
* liferea: bugfix 1.12-rc2 -> 1.12-rc3Vladimír Čunát2017-04-01
|
* liferea: add libnotifyNikolay Amiantov2017-03-04
| | | | | | | I've accidentially removed it from build inputs. Notice that GNOME 3 icons weren't removed accidentially -- it works without them for me on XFCE.
* liferea: 1.10.19 -> 1.12-rc2Nikolay Amiantov2017-03-04
| | | | | It's a release candidate but it works with new WebKitGTK and we don't build old one anymore because of vulnerabilities.
* pan: sha1 -> sha256Joachim Fasting2017-03-01
|
* Remove kde4.kwootyThomas Tuegel2017-02-24
| | | | | - No maintainer in Nixpkgs - No upstream activity