Commit Graph

178 Commits

Author SHA1 Message Date
Jonas Heinrich
f8d3c2dabd
Merge pull request #250707 from yayayayaka/liferea-1.15.1
liferea: 1.15.0 -> 1.15.1
2023-08-22 18:43:40 +02:00
Yaya
fdf4e6f802 liferea: add yayayayaka to maintainers 2023-08-22 08:25:51 +00:00
Yaya
79b8b876e5 liferea: 1.15.0 -> 1.15.1
https://github.com/lwindolf/liferea/releases/tag/v1.15.1
2023-08-22 08:10:02 +00:00
Vladimír Čunát
1c0d654684
Merge #239191: treewide: gobject-introspection from buildInputs to nativeBuildInputs
...into staging
2023-07-26 20:53:32 +02:00
Chuang Zhu
517fd7c365 pan: 0.146 -> 0.154
According to https://pan.rebelbase.com/download/, newer versions are
released on https://gitlab.gnome.org/GNOME/pan/
2023-07-25 04:22:56 +08:00
Artturin
9999bf7a21 treewide: gobject-introspection from buildInputs to nativeBuildInputs
gobject-introspection should be in nativeBuildInputs for cross to work
properly (so propagations and hook work properly)
2023-06-28 22:33:40 +03:00
R. Ryantm
28b153b4b8 raven-reader: 1.0.78 -> 1.0.80 2023-06-04 13:58:53 +00:00
R. Ryantm
196260267e liferea: 1.14.5 -> 1.15.0 2023-04-18 23:24:20 +00:00
R. Ryantm
0712b966d1 liferea: 1.14.4 -> 1.14.5 2023-04-14 18:56:59 +00:00
José Romildo
972f685682 liferea: 1.14.3 -> 1.14.4 2023-04-01 21:53:04 -03:00
José Romildo
4929fad3c7 liferea: 1.14.2 -> 1.14.3 2023-03-29 07:04:59 +02:00
R. Ryantm
e7eef75c5e liferea: 1.14.1 -> 1.14.2 2023-03-23 08:42:12 +00:00
R. Ryantm
c6d79fec06 liferea: 1.14.0 -> 1.14.1 2023-03-13 15:47:18 +01:00
Kevin Boulain
f67655f5ad slrn: build slrnpull
As explained in its documentation, also build slrnpull when building
slrn:
https://github.com/jedsoft/slrn/blob/master/doc/slrnpull/SETUP
2023-01-30 23:22:20 +01:00
Ferry Jérémie
65d7e87fdb treewide: replace http by https when https is a permanent redirection 2023-01-22 02:46:49 +01:00
Sergei Trofimovich
bc7386def2 liferea: 1.14-RC3 -> 1.14.0 2023-01-17 21:31:27 +00:00
R. Ryantm
af5880a4e2 raven-reader: 1.0.74 -> 1.0.78 2023-01-08 05:22:19 +00:00
R. Ryantm
6d54ba96c0 liferea: 1.14-RC2 -> 1.14-RC3 2022-12-23 05:06:30 +00:00
Sandro
d9c3f3c0dc
Merge pull request #196007 from wegank/fdl11-remove 2022-11-09 22:31:50 +01:00
R. Ryantm
2a32128294 liferea: 1.14-RC1 -> 1.14-RC2 2022-10-29 12:09:16 +00:00
Weijia Wang
84d67f0574 licenses: remove fdl11 2022-10-27 22:45:22 +02:00
R. Ryantm
faacc2c571 liferea: 1.13.9 -> 1.14-RC1 2022-10-12 15:09:38 +00:00
José Romildo
01510c7ff3 treewide: no need to pass pname, version and attrPath to update scripts based on generic-updater 2022-09-27 23:41:53 -03:00
kilianar
8fcc793b4b raven-reader: 1.0.73 -> 1.0.74
https://github.com/hello-efficiency-inc/raven-reader/releases/tag/v1.0.74
2022-07-30 23:36:52 +02:00
José Romildo
6d5fa6bf8c liferea: 1.13.8 -> 1.13.9 2022-07-25 18:49:53 -03:00
José Romildo
7843e262d8 liferea: add update script 2022-07-25 18:49:03 -03:00
kilianar
d22931cf05 raven-reader: 1.0.72 -> 1.0.73
https://github.com/hello-efficiency-inc/raven-reader/releases/tag/v1.0.73
2022-06-13 16:21:23 +02:00
P. R. d. O
1905c075b0
raven-reader: init at 1.0.72 2022-05-09 08:29:33 -06:00
José Romildo
bf59489fea liferea: 1.12.9 -> 1.13.8 2022-05-04 18:39:42 -03:00
fortuneteller2k
efe2e4e8c2 pan: fix build and format 2021-06-27 23:57:28 +08:00
Jonathan Ringer
9bb3fccb5b treewide: pkgs.pkgconfig -> pkgs.pkg-config, move pkgconfig to alias.nix
continuation of #109595

pkgconfig was aliased in 2018, however, it remained in
all-packages.nix due to its wide usage. This cleans
up the remaining references to pkgs.pkgsconfig and
moves the entry to aliases.nix.

python3Packages.pkgconfig remained unchanged because
it's the canonical name of the upstream package
on pypi.
2021-01-19 01:16:25 -08:00
Ben Siraphob
badf51221d treewide: stdenv.lib -> lib 2021-01-16 17:58:11 +07:00
Profpatsch
4a7f99d55d treewide: with stdenv.lib; in meta -> with lib;
Part of: https://github.com/NixOS/nixpkgs/issues/108938

meta = with stdenv.lib;

is a widely used pattern. We want to slowly remove
the `stdenv.lib` indirection and encourage people
to use `lib` directly. Thus let’s start with the meta
field.

This used a rewriting script to mostly automatically
replace all occurances of this pattern, and add the
`lib` argument to the package header if it doesn’t
exist yet.

The script in its current form is available at
https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
2021-01-11 10:38:22 +01:00
Vladimír Čunát
3c0e369752
liferea: remove myself from meta.maintainers
I haven't been really using it anymore recently, and fortunately we have
another active maintainer :-)
2020-09-07 13:40:02 +02:00
Vincent Laporte
d7fa5b6aad liferea: 1.12.6 → 1.12.9 2020-09-07 13:29:58 +02:00
Markus Kowalewski
49ce43a460
pan: add license 2020-06-11 18:27:34 +02:00
Jan Tojnar
d67e2a2702
liferea: Update dependencies
dconf & librsvg are indirect and will be already available through wrapGAppsHook.
libsecret replaces gnome-secret and is required for the keyring plug-in.

Closes: https://github.com/NixOS/nixpkgs/issues/39650
2020-06-05 00:03:05 +02:00
Jan Tojnar
dfd6f3de19
liferea: Format with nixpkgs-fmt
* Format with nixpkgs-fmt
* Replace pkgconfig alias with pkg-config
* Remove duplicate gsettings-desktop-schemas
2020-06-05 00:03:03 +02:00
Daiderd Jordan
b7ddbd52bd
treewide: replace SRI hashes 2020-06-01 15:24:19 +02:00
Michael Weiss
fe5117d05e
quiterss: 0.19.3 -> 0.19.4 2020-04-21 21:31:45 +02:00
Michael Reilly
84cf00f980
treewide: Per RFC45, remove all unquoted URLs 2020-04-10 17:54:53 +01:00
Michael Weiss
cfccb477cd
quiterss: 0.19.2 -> 0.19.3 2020-01-30 20:12:26 +01:00
R. RyanTM
fd3b84b762 pan: 0.145 -> 0.146 2019-12-01 18:41:08 +01:00
Michael Weiss
697c0fbf6d
quiterss: 0.19.1 -> 0.19.2 2019-11-29 13:26:24 +01:00
Michael Weiss
f5670ebd8e
quiterss: 0.19.0 -> 0.19.1 2019-11-17 21:27:07 +01:00
Michael Weiss
7a90d4a946
quiterss: 0.18.12 -> 0.19.0 2019-11-15 22:23:11 +01:00
worldofpeace
b0c2aea20b
treewide: drop adding hicolor-icon-theme where possible
This was either for the setup-hook to remove caches or added
even though the respective icon theme propagated it.
2019-09-18 22:47:26 +02:00
volth
7b8fb5c06c treewide: remove redundant quotes 2019-09-08 23:38:31 +00:00
Jan Tojnar
72e7d569a7
tree-wide: s/GTK+/GTK/g
GTK was renamed.
2019-09-06 02:54:53 +02:00
volth
c814d72b51 treewide: name -> pname 2019-08-17 10:54:38 +00:00