Bjørn Forsman
a65e693ed7
lighttpd: 1.4.75 -> 1.4.76
...
The release tarball no longer comes with a ./configure script (related
to avoiding CVE-2024-3094 xz supply chain attack), so add autoreconfHook
to keep the build working.
https://www.lighttpd.net/2024/4/12/1.4.76/
2024-09-11 21:15:53 +02:00
Sigmanificient
d48a9bb622
treewide: remove unused fetchpatch arguments
2024-06-04 12:40:25 +02:00
Alyssa Ross
8d935aae93
lighttpd: enable debug info
2024-04-11 21:56:18 +02:00
R. Ryantm
caeb43e0a8
lighttpd: 1.4.74 -> 1.4.75
2024-03-14 01:09:00 +00:00
R. Ryantm
6e5b80bc7d
lighttpd: 1.4.73 -> 1.4.74
2024-02-20 14:51:08 +01:00
Alyssa Ross
85fa37afc2
lighttpd.meta.mainProgram: init
2023-12-28 15:01:55 +01:00
R. Ryantm
686a5fca36
lighttpd: 1.4.72 -> 1.4.73
2023-11-02 07:13:40 +01:00
Bjørn Forsman
57f0dd3a2f
lighttpd: re-enable remaining disabled tests
...
All tests work now.
2023-10-20 23:45:29 +02:00
Bjørn Forsman
c531697bc3
lighttpd: 1.4.71 -> 1.4.72
...
The patch to disable legacy crypt tests (which were broken for us) isn't
needed anymore, so remove it.
2023-10-20 23:45:29 +02:00
Bjørn Forsman
14fdabbb7b
lighttpd: 1.4.69 -> 1.4.71
...
Changelogs:
https://www.lighttpd.net/2023/5/27/1.4.71/
https://www.lighttpd.net/2023/5/10/1.4.70/
Update the patch that disables legacy crypt tests, because it doesn't
apply anymore.
2023-06-01 17:08:02 +02:00
Martin Weinelt
8c4c762da2
lighttpd: Disable tests for DES and MD5
...
These are legacy ciphers, which we don't support any longer.
2023-03-26 15:58:08 +02:00
R. Ryantm
95cb05fe7f
lighttpd: 1.4.68 -> 1.4.69
2023-03-16 14:11:07 +01:00
Guillaume Girol
33afbf39f6
treewide: switch to nativeCheckInputs
...
checkInputs used to be added to nativeBuildInputs. Now we have
nativeCheckInputs to do that instead. Doing this treewide change allows
to keep hashes identical to before the introduction of
nativeCheckInputs.
2023-01-21 12:00:00 +00:00
R. Ryantm
356f88f801
lighttpd: 1.4.67 -> 1.4.68
2023-01-08 15:09:15 +01:00
R. Ryantm
c4bb5315d3
lighttpd: 1.4.66 -> 1.4.67
2022-09-21 17:55:05 +02:00
R. Ryantm
cb86b14f51
lighttpd: 1.4.65 -> 1.4.66
2022-08-11 09:26:28 +02:00
Bjørn Forsman
90b3a5b927
lighttpd: link nixosTests.lighttpd to passthru.tests
...
Ref. https://nixos.org/manual/nixpkgs/unstable/#ssec-nixos-tests-linking
2022-07-26 04:45:03 +02:00
Bjørn Forsman
e823fb4f4f
lighttpd: 1.4.64 -> 1.4.65
...
And remove already merged patch.
Changelog: https://www.lighttpd.net/2022/6/7/1.4.65/
2022-07-25 10:15:35 +02:00
Robert Scott
fef09da997
lighttpd: add patch to fix build on darwin x86_64
2022-01-28 00:02:44 +01:00
Thomas Gerbet
846fafa68e
lighttpd: 1.4.63 -> 1.4.64
...
https://www.lighttpd.net/2022/1/19/1.4.64/
2022-01-27 21:12:21 +01:00
Robert Scott
ecfda6ef7c
lighttpd: add patch for CVE-2022-22707
2022-01-17 00:27:40 +01:00
Robert Scott
a0b3813092
lighttpd: 1.4.59 -> 1.4.63
2022-01-17 00:27:40 +01:00
Brecht Savelkoul
5655e71eee
lighttpd: remove null defaults for input packages
2021-09-27 07:33:27 +02:00
Brecht Savelkoul
baa04706d7
lighttpd: add build options for new auth methods
2021-09-27 07:33:27 +02:00
Samuel Ainsworth
02c595ebdb
Prefer pname
and version
in mkDerivation
s instead of name
( #123438 )
...
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
Co-authored-by: nixpkgs-review <nixpkgs-review@example.com>
2021-05-23 17:07:31 +02:00
R. RyanTM
08fdd03217
lighttpd: 1.4.58 -> 1.4.59
2021-02-04 22:23:10 +00:00
R. RyanTM
058356f4ad
lighttpd: 1.4.56 -> 1.4.58
2021-01-19 22:46:29 +00: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
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
R. RyanTM
e1c319def2
lighttpd: 1.4.55 -> 1.4.56
2020-12-02 15:06:14 +00:00
Michael Reilly
84cf00f980
treewide: Per RFC45, remove all unquoted URLs
2020-04-10 17:54:53 +01:00
R. RyanTM
fa84aa8adb
lighttpd: 1.4.54 -> 1.4.55
2020-02-08 18:13:10 +01:00
Vladimír Čunát
22a216849b
Re-Revert "Merge branch 'staging-next'"
...
This reverts commit f8a8fc6c7c
.
2019-09-22 09:38:09 +02:00
Vladimír Čunát
f8a8fc6c7c
Revert "Merge branch 'staging-next'"
...
This reverts commit 41af38f372
, reversing
changes made to f0fec244ca
.
Let's delay this. We have some serious regressions.
2019-09-21 20:05:09 +02:00
Izorkin
329a88efa7
treewide: replace mysql.connector-c to libmysqlclient
2019-09-09 15:55:34 +03:00
R. RyanTM
7254994411
lighttpd: 1.4.53 -> 1.4.54
...
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/lighttpd/versions
2019-06-02 10:21:14 +02:00
Andrew Newman
0b5a5c52d6
lighttpd: fix crosscompilation
2019-05-08 10:43:00 +03:00
R. RyanTM
d5e9e5fcf2
lighttpd: 1.4.52 -> 1.4.53
...
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/lighttpd/versions
2019-03-26 06:37:24 +01:00
Michael Raskin
3bd38b0daa
lighttpd: fix tests on Linux
...
The tests were enabled in #53488 and succeeded on Darwin; on Linux they
still failed because of empty hostname inside the sandbox (we have no
UTS-namespace hostname and I think no /etc/hosts). Nix on Darwin lacks
powerful enough sandboxing, so there were no problems on Darwin.
Patching the tests to fallback to "127.0.0.1" if hostname of the
localhost cannot be retrieved matches the behaviour of lighttpd itself
and allows the tests to pass.
Not sure if having no hostname in the test environment is a bit too
weird for the upstream to care.
2019-01-11 11:46:23 +01:00
Kirill Elagin
a162a562bd
lighttpd: Enable tests
...
They seem to pass now, so why not.
2019-01-06 13:12:20 +03:00
Kirill Elagin
bd141e9af1
lighttpd: Hide attr dependency behind an option
...
* Unbreak darwin
* It was unused anyway, as it is disabled by default
* Now there is an feature-argument to enable it
2019-01-06 13:12:19 +03:00
Kirill Elagin
d94cbd4188
lighttpd: Disable WebDAV by default
...
* It is disabled by default in lighttpd itself
* Darwin doesn’t seem to have a function in libuiid that it needs
2019-01-06 13:12:14 +03:00
Will Dietz
05f6ec295f
lighttpd: 1.4.51 -> 1.4.52
...
https://www.lighttpd.net/2018/11/28/1.4.52/
2018-12-07 21:30:51 -06:00
R. RyanTM
5bccc53a50
lighttpd: 1.4.50 -> 1.4.51 ( #49238 )
...
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/lighttpd/versions
2018-10-27 07:21:11 -04:00
Vladimír Čunát
14aa936ec5
Merge branch 'staging-next' into staging
2018-08-17 20:53:27 +02:00
R. RyanTM
6e1d3cbe6b
lighttpd: 1.4.49 -> 1.4.50
...
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/lighttpd/versions .
2018-08-17 06:46:21 +02:00
Jan Malakhovski
6c1a9d9d79
lighttpd: make tests run, but disable
2018-08-11 09:35:32 +00:00
Silvan Mosberger
57bccb3cb8
treewide: http -> https sources ( #42676 )
...
* treewide: http -> https sources
This updates the source urls of all top-level packages from http to
https where possible.
* buildtorrent: fix url and tab -> spaces
2018-06-28 20:43:35 +02:00
Roland Koebler
285a90b714
lighttpd: add option to enable WebDAV ( #40623 )
2018-05-18 01:35:31 +02:00