Niklas Korz
252c0538e5
matomo: move to pkgs/by-name
2025-01-16 10:53:23 +01:00
Niklas Korz
83eb8d8020
matomo: refactor into single package file
2025-01-16 10:53:23 +01:00
Niklas Korz
d7ac52bd81
matomo-beta: remove
2025-01-15 19:48:38 +01:00
Niklas Korz
976ec24433
matomo: 5.2.0 -> 5.2.1
2024-12-20 19:42:49 +01:00
Niklas Korz
37ccca2116
matomo: 5.1.2 -> 5.2.0
2024-12-12 17:09:11 +01:00
Niklas Korz
b6f4b380a6
matomo: default to 5.x, drop 4.x
2024-12-12 17:09:10 +01:00
Niklas Korz
f41c166f01
matomo-beta: 5.0.0-rc9 -> 5.2.0-rc1
2024-12-09 17:49:26 +01:00
Niklas Korz
00553f86fd
matomo_5: 5.1.1 -> 5.1.2
2024-12-09 17:49:25 +01:00
Niklas Korz
0b83ab49d5
matomo: format
2024-12-09 17:49:25 +01:00
Niklas Korz
6b1f76fc14
matomo: use finalAttrs for accessing version
2024-12-09 17:48:44 +01:00
laalsaas
ed48acbc06
matomo_5: 5.1.0 -> 5.1.1
2024-08-20 15:49:51 +02:00
laalsaas
cf642a11d3
matomo_5: 5.0.2 -> 5.1.0
2024-07-30 09:29:20 +02:00
Sandro Jäckel
743d9f835d
maintainers: remove one year inactive maintainer kiwi
2024-06-21 01:38:39 -04:00
Alexis Hildebrandt
755b915a15
treewide: Remove indefinite article from meta.description
...
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
| xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00
stuebinm
ff1a94e523
treewide: add meta.mainProgram to packages with a single binary
...
The nixpkgs-unstable channel's programs.sqlite was used to identify
packages producing exactly one binary, and these automatically added
to their package definitions wherever possible.
2024-03-19 03:14:51 +01:00
Tobias Stenzel
7440132285
matomo: 4.16.0 -> 4.16.1
...
- https://matomo.org/changelog/matomo-4-16-1/
2024-02-25 01:26:55 +01:00
Max Hausch
7e2ab60bc5
matomo_5: Init at 5.0.2
2024-02-19 07:39:49 +01:00
Tobias Stenzel
eccd30c5ee
matomo-beta: 5.0.0-rc3 -> 5.0.0-rc9
...
https://matomo.org/changelog/matomo-5-0-0-rc/
2023-12-15 23:04:19 +01:00
Tobias Stenzel
01eba3bcba
matomo: 4.15.1 -> 4.16.0
...
https://matomo.org/changelog/matomo-4-16-0/
2023-12-15 22:59:16 +01:00
Tobias Stenzel
d5fc54291f
matomo-beta: 4.14.3-b6 -> 5.0.0-rc3
...
* https://matomo.org/changelog/matomo-5-0-0-rc/
2023-10-05 10:10:35 +02:00
Tobias Stenzel
ffbf8e4686
matomo: add passthru.tests
2023-10-05 00:20:49 +02:00
Tobias Stenzel
804f89ddce
matomo: 4.14.2 -> 4.15.1
...
* https://matomo.org/changelog/matomo-4-15-0/
* https://matomo.org/changelog/matomo-4-15-1/
2023-10-05 00:20:29 +02:00
boozedog
d1aab88879
matomo: 4.10.1 -> 4.14.2
2023-06-13 07:36:07 -04:00
Robert Djubek
54f19d3ee7
matomo: 4.5.0 -> 4.10.1
...
matomo-beta: 4.6.0 -> 4.11.0
2022-07-26 04:52:08 +02:00
Olivier Marty
7852ea1596
nixos/matomo: point path.geoip2 outside of the nix store.
...
path.geoip2 pointed to the nix store which is read-only. Matomo was
failing to download a geoip2 database. See #64759 .
2022-02-16 22:21:44 +03:00
Maciej Krüger
951e9002ed
matomo: 4.4.1 -> 4.5.0
2021-11-09 15:14:36 +01:00
Maciej Krüger
69a54df996
matomo: add vendor/matomo/matomo-php-tracker/run_tests.sh to filesToFIx
...
also add log message about missing files
2021-11-09 15:14:35 +01:00
sebbel
4d3399c8f4
matomo: add sebbel as maintainer
2021-08-16 18:29:43 +02:00
sebbel
444e3030da
matomo, 4.3.1 -> 4.4.1
2021-08-15 08:31:58 +02:00
Maciej Krüger
5b2824b9e2
matomo: 4.2.1 -> 4.3.1
2021-06-27 23:12:09 -07:00
nek0
a04b243237
matomo: 3.14.1 -> 4.2.1
2021-03-28 10:50:01 +02:00
Ben Siraphob
872973d7d1
pkgs/servers: stdenv.lib -> lib
2021-01-15 14:24:03 +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
ajs124
88363a8704
matomo: 3.14.0 -> 3.14.1
2020-09-15 02:33:30 +02:00
Florian Jacob
f0c65f21ed
matomo: 3.13.6 -> 3.14.0
2020-08-26 14:13:16 +02:00
Florian Jacob
7f14cdbe04
matomo: 3.13.5 -> 3.13.6
2020-06-08 21:47:09 +02:00
Florian Jacob
f34412fce7
matomo: 3.13.4 -> 3.13.5
2020-05-07 11:19:55 -07:00
Michael Reilly
84cf00f980
treewide: Per RFC45, remove all unquoted URLs
2020-04-10 17:54:53 +01:00
Robert Djubek
761b391b4a
matomo: 3.13.3 -> 3.13.4
...
Updated both matomo and matomo-beta to the latest version
2020-03-30 07:58:55 +00:00
Robert Djubek
56a901b8d6
matomo: 3.13.2 -> 3.13.3
...
Updated both matomo and matomo-beta to the latest version
2020-03-07 04:27:18 +00:00
Robert Djubek
68cff3a69c
matomo: 3.13.1 -> 3.13.2
...
Updated both matomo and matomo-beta to the latest version
2020-02-11 19:16:13 +01:00
ajs124
26c3e67ea4
matomo: 3.13.0 -> 3.13.1
2020-01-20 20:46:22 +01:00
Robert Djubek
42d815d102
matomo: 3.11.0 -> 3.13.0
2019-12-06 20:06:12 +01:00
Janne Heß
08b9cac6d5
matomo: Fix consistency check
...
This is done by recalculating sizes and md5 hashes and inserting them
into the manifest.
2019-11-18 14:52:47 +01:00
Robert Djubek
cb85d27adc
matomo-beta: init at 3.12.0-b3
...
Add a beta version of matomo 3.12 that has recent bug fixes. They release these more frequently so it's a good option to have.
2019-10-28 05:11:22 +00:00
R. RyanTM
936805a008
matomo: 3.10.0 -> 3.11.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/matomo/versions
2019-08-19 10:26:21 -07:00
Jon
dc5584adea
matomo: 3.9.1 -> 3.10.0 ( #64848 )
...
* matomo: 3.9.1 -> 3.10.0
2019-08-03 16:51:17 +09:00
Florian Klink
26f19430eb
matomo: 3.9.0 -> 3.9.1
2019-03-28 22:53:13 +01:00
Florian Klink
4ffd3ad4fd
matomo: update url
2019-03-28 22:51:56 +01:00
R. RyanTM
139243406b
matomo: 3.8.1 -> 3.9.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/matomo/versions
2019-03-25 22:21:25 -07:00