Commit Graph

10031 Commits

Author SHA1 Message Date
Sergei Trofimovich
25206ed9a8 ubootTools: revert "fix build by fixing -idirafter ordering"
This reverts commit 8b3a31f923.

commit 8c80bd08b7
("build-support/cc-wrapper: pass in non-existent --sysroot= to untangle
from libc") was reverted. We can drop the workaround.
2023-01-29 07:49:37 +00:00
Randy Eckenrode
81a86d07e6 dxvk: 2.0 -> 2.1
https://github.com/doitsujin/dxvk/releases/tag/v2.1
2023-01-28 14:42:55 -05:00
Randy Eckenrode
67a2ceab6a dxvk: add native Linux build 2023-01-28 14:42:55 -05:00
Randy Eckenrode
403fe21323 dxvk: expose Windows derivations
This is in preparation for native builds of DXVK, but it also allows
users to choose to use an older version if that is more compatible with
their hardware.
2023-01-28 14:42:55 -05:00
Randy Eckenrode
16e9b55025 dxvk: vendor setup_dxvk.sh
Upstream will remove the `setup_dxvk.sh` in DXVK 2.1. To avoid breaking
users of the current derivation, vendor `setup_dxvk.sh`. This script is
based on the upstream script with some modifications:

- Update command-line parsing; and
- Reorganized action processing logic.
2023-01-28 14:42:54 -05:00
Vladimír Čunát
277d34fbdf Merge #212919: ubootTools: fix build by fixing -idirafter ordering
...into staging-next
2023-01-28 08:45:47 +01:00
Mario Rodas
92aa3caf58 dxvk: fix pname 2023-01-28 04:20:00 +00:00
github-actions[bot]
5e46cfeba0 Merge staging-next into staging 2023-02-27 12:01:41 +00:00
Sergei Trofimovich
e7e072d05a Merge remote-tracking branch 'origin/staging-next' into staging
Conflicts:
	pkgs/top-level/python-aliases.nix

Trivial conflict of multiple added aliases.
2023-02-26 21:53:22 +00:00
github-actions[bot]
199efde227 Merge staging-next into staging 2023-02-24 18:02:00 +00:00
github-actions[bot]
13fb68e8cf Merge staging-next into staging 2023-02-24 12:01:52 +00:00
github-actions[bot]
3cdd771820 Merge staging-next into staging 2023-02-23 18:01:49 +00:00
github-actions[bot]
9acd1eb7fd Merge staging-next into staging 2023-02-21 18:01:45 +00:00
github-actions[bot]
ba877c4755 Merge staging-next into staging 2023-02-19 06:02:10 +00:00
github-actions[bot]
8c0220980d Merge staging-next into staging 2023-02-19 00:03:03 +00:00
Artturi
cdcca1cdcd Merge pull request #215715 from Artturin/removegirworkarounds2 2023-02-18 20:12:57 +02:00
Artturin
cadffcfe50 treewide: remove issue #56943 workarounds
checked with diffoscope+difflog and launching the programs

i have fixed that issue in my other gir PRs
2023-02-17 20:26:13 +02:00
Silvan Mosberger
0346f6a9e3 Merge pull request #212336 from nixpkgs-architecture/some-nix-file-deps
{documentation-highlighter,zsh-clipboard}: Remove dependency on Nix files
2023-01-27 20:35:27 +01:00
Sergei Trofimovich
8b3a31f923 ubootTools: fix build by fixing -idirafter ordering
`ubootTools` build broke after https://github.com/NixOS/nixpkgs/pull/210004
where we started dropping default libc include path and switched to
`-idirafter` way of specifying libc headers.

Unfortunately the way it's implemented it injects -idirafter after
user's flags, not before. That allows users to inject their paths before
libc include paths, not after (as it would notmally happen).

The change works it around for u-boot by pulling -idirafter libc flags
before user's flags.
2023-01-27 08:32:06 +00:00
Krzysztof Kotlenga
bf4959f1a5 mfcl8690cdwlpr: Make it installable on x86_64-linux
This seems like a strange omission, because it works without a hitch.
Tested using cups and mfcl8690cdwcupswrapper, which uses this package.
2023-01-24 21:57:04 +01:00
Nick Cao
3e78ccbbfe Merge pull request #212355 from reckenrode/dxvk-fix
dxvk: fix Darwin build
2023-01-24 15:57:26 +08:00
Weijia Wang
daaa3b683a Merge pull request #212299 from r-ryantm/auto-update/fastly
fastly: 4.6.2 -> 5.0.0
2023-01-24 05:01:13 +01:00
Randy Eckenrode
56c2631e5b dxvk: fix Darwin build 2023-01-23 21:38:47 -05:00
Silvan Mosberger
f6e5ea8a2c documentation-highlighter: Only depend on needed files
Makes the build independency of the default.nix and update.sh file by
explicitly specifying the files that are needed in the result

This allows changing those files without causing a rebuild
2023-01-24 00:59:11 +01:00
Sandro Jäckel
09e07a3ad3 cups: remove with lib over entire file 2023-01-23 22:45:25 +01:00
R. Ryantm
a18149dff5 fastly: 4.6.2 -> 5.0.0 2023-01-23 19:55:06 +00:00
Fabian Affolter
94ca24d932 Merge pull request #212031 from dotlambda/flashfocus-fix
flashfocus: use pythonRelaxDepsHook
2023-01-22 12:34:41 +01:00
Adam Joseph
42815b4a0c treewide: systemdSupport: use lib.meta.availableOn
Many packages have some kind of flag indicating whether or not to build with
systemd support.  Most of these default to `stdenv.isLinux`, but systemd does
not build on (and is marked `broken` for) `isStatic`.  Only a few packages have
the needed `&& !isStatic` in the default value for their parameter.

This commit moves the logic for the default value of these flags into
`systemd.meta.{platforms,badPlatforms}` and evaluates those conditions using
`lib.meta.availableOn`.

This provides three benefits:

1. The default values are set correctly (i.e. including `&& isStatic`)

2. The default values are set consistently

3. The way is paved for any future non-Linux systemd platforms (FreeBSD is
   reported to have experimental systemd support)
2023-01-22 00:27:19 -08:00
Weijia Wang
218c4c526e Merge pull request #212002 from mothsART/feature/replace_http_by_https
treewide: replace http by https when https is a permanent redirection
2023-01-22 03:26:02 +01:00
Robert Schütz
e96fe2271d flashfocus: use pythonRelaxDepsHook 2023-01-21 17:57:51 -08: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
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
Nick Cao
3836bf0297 Merge pull request #209120 from NickCao/opensbi
opensbi: 1.1 -> 1.2
2023-01-19 18:19:44 +08:00
R. Ryantm
3bf0de1ee9 fastly: 4.6.1 -> 4.6.2 2023-01-18 02:13:34 +00:00
Joel Koen
2c56763b58 maintainers: jyooru -> joelkoen 2023-01-15 14:14:19 +10:00
Martin Weinelt
c1e6c6af69 Merge remote-tracking branch 'origin/master' into staging-next 2023-01-11 03:51:33 +01:00
R. Ryantm
f91681eafe fastly: 4.5.0 -> 4.6.1 2023-01-10 22:51:36 +08:00
Artturi
27c1ec2ecf Merge pull request #209816 from Artturin/deprecate-top-level-platform-aliases 2023-01-09 22:15:50 +02:00
Artturin
2eeb34c273 treewide: {build,host,target}Platform -> stdenv.{build,host,target}Platform 2023-01-09 21:13:22 +02:00
github-actions[bot]
33aa224777 Merge master into staging-next 2023-01-09 18:01:24 +00:00
R. Ryantm
164e802e02 ananicy-cpp: 1.0.1 -> 1.0.2 2023-01-09 05:20:57 +00:00
github-actions[bot]
fce67420c4 Merge master into staging-next 2023-01-09 00:02:14 +00:00
Patrick Nuckolls
b5e025bb2a gnu-shepherd: 0.8.1 -> 0.9.3 (#206317) 2023-01-08 23:54:49 +01:00
github-actions[bot]
b60b0a223e Merge master into staging-next 2023-01-08 06:01:06 +00:00
pacien
13e9dd84d8 tmuxPlugins.cpu: unstable-2021-12-15 -> unstable-2023-01-06 2023-01-06 20:30:10 +01:00
Martin Weinelt
ca3f9b7326 rich-cli: Relax textual constraint 2023-01-05 13:20:49 +01:00
Nick Cao
168c2b6245 opensbi: 1.1 -> 1.2 2023-01-05 09:09:00 +08:00
Jan Tojnar
5810109b42 Merge branch 'staging-next' into staging
- readline6 attribute removed from all-packages.nix in d879125d61
- readline attribute was bumped to readline82 in 50adabdd60
2023-01-02 03:04:32 +01:00
Fabian Affolter
e622170336 wiki-tui: add changelog to meta 2023-01-01 18:34:59 +01:00
lom
3a68bc8b9e wiki-tui: 0.6.0 -> 0.6.1 2023-01-01 11:36:38 -05:00