Nick Cao
8a7155d7ed
Merge pull request #277973 from trofi/ruff-fix-eval
...
ruff: use `ruff-lsp`, not the `python3.pkgs.ruff-lsp` alias
2024-01-01 10:29:18 -05:00
Nick Cao
f6bbb93bfa
Merge pull request #278012 from r-ryantm/auto-update/plocate
...
plocate: 1.1.19 -> 1.1.20
2024-01-01 10:28:57 -05:00
Nick Cao
0bde982a56
Merge pull request #278021 from r-ryantm/auto-update/spicetify-cli
...
spicetify-cli: 2.28.1 -> 2.29.1
2024-01-01 10:28:33 -05:00
Nick Cao
f643a0e3f2
Merge pull request #276916 from roblabla/update-ghidra-11
...
ghidra: 10.4 -> 11.0
2024-01-01 10:26:56 -05:00
Nick Cao
35aaf0d287
Merge pull request #277953 from TomaSajt/prismlauncher
...
prismlauncher: fix meta using lib.version instead of finalAttrs.version
2024-01-01 10:24:47 -05:00
R. Ryantm
309913ce73
templ: 0.2.476 -> 0.2.501
2024-01-01 15:24:15 +00:00
Nick Cao
e39cb552c3
Merge pull request #277961 from r-ryantm/auto-update/aliyun-cli
...
aliyun-cli: 3.0.190 -> 3.0.191
2024-01-01 10:22:16 -05:00
Nick Cao
42e892fdbb
Merge pull request #277962 from r-ryantm/auto-update/python311Packages.unidata-blocks
...
python311Packages.unidata-blocks: 0.0.8 -> 0.0.9
2024-01-01 10:21:34 -05:00
Nick Cao
0bd3be06ce
Merge pull request #277991 from r-ryantm/auto-update/gickup
...
gickup: 0.10.24 -> 0.10.25
2024-01-01 10:18:43 -05:00
Nick Cao
905cad69a0
Merge pull request #277992 from r-ryantm/auto-update/git-mit
...
git-mit: 5.12.181 -> 5.12.182
2024-01-01 10:18:19 -05:00
Nick Cao
b696e98808
Merge pull request #278013 from r-ryantm/auto-update/python311Packages.gspread
...
python311Packages.gspread: 5.12.3 -> 5.12.4
2024-01-01 10:15:46 -05:00
Nick Cao
9a255aba38
Merge pull request #278014 from r-ryantm/auto-update/python311Packages.mdformat-mkdocs
...
python311Packages.mdformat-mkdocs: 1.1.0 -> 1.1.2
2024-01-01 10:14:07 -05:00
Nick Cao
13100141b6
Merge pull request #278018 from r-ryantm/auto-update/python311Packages.sanic-routing
...
python311Packages.sanic-routing: 23.6.0 -> 23.12.0
2024-01-01 10:12:16 -05:00
Nick Cao
18b85c2354
Merge pull request #278022 from r-ryantm/auto-update/wmfocus
...
wmfocus: 1.4.0 -> 1.5.0
2024-01-01 10:10:54 -05:00
Nick Cao
32da961464
Merge pull request #278033 from r-ryantm/auto-update/keybase
...
keybase: 6.2.3 -> 6.2.4
2024-01-01 10:09:33 -05:00
Nick Cao
042cfc57a0
Merge pull request #278047 from r-ryantm/auto-update/cargo-tally
...
cargo-tally: 1.0.32 -> 1.0.33
2024-01-01 10:04:43 -05:00
Nick Cao
886dc9e5d3
Merge pull request #278055 from r-ryantm/auto-update/gimoji
...
gimoji: 0.7.1 -> 0.7.2
2024-01-01 10:04:08 -05:00
Nick Cao
c719db679f
Merge pull request #278060 from r-ryantm/auto-update/redis-plus-plus
...
redis-plus-plus: 1.3.10 -> 1.3.11
2024-01-01 10:02:30 -05:00
Sergei Trofimovich
c8b5413fa6
haskell.packages.ghc865Binary: drop unevaluatable packages
...
`haskell.packages.ghc865Binary` has a few packages that fails to evaluate
by referring non-existent attributes. This turns evaluation attempts into
unrecoverable errors.
Before the change an attempt to instantiate all `ghc810` packages failed
as:
$ nix-instantiate --strict --eval --expr 'with import ./. {}; lib.mapAttrs (n: v: builtins.tryEval (lib.isDerivation v)) haskell.packages.ghc865Binary'
error:
… while evaluating the attribute 'llvmPackages'
at lib/attrsets.nix:1180:11:
1179| attrs:
1180| attrs // { recurseForDerivations = false; };
| ^
1181|
error: value is null while a set was expected
The change follows definition of `pkgs/top-level/haskell-packages.nix`
and also sets `llvmPackages` to `null`. While at it dropped other
references to deleted packages like `exceptions` pin.
2024-01-01 14:46:40 +00:00
Ryan Lahfa
d705c53797
Merge pull request #263279 from kalekseev/bump-openresty
...
openresty: 1.21.4.1 -> 1.21.4.3
2024-01-01 15:32:09 +01:00
Sergei Trofimovich
e649d53618
haskell.packages.ghc810: drop unevaluatable packages
...
`haskell.packages.ghc810` has a few packages that fails to evaluate by
referring non-existent attributes. This turns evaluation attempts into
unrecoverable errors.
Before the change an attempt to instantiate all `ghc810` packages failed
as:
$ nix-instantiate --strict --eval --expr 'with import ./. {}; lib.mapAttrs (n: v: builtins.tryEval (lib.isDerivation v)) haskell.packages.ghc810'
error:
error: attribute 'stylish-haskell_0_14_3_0' missing
at pkgs/development/haskell-modules/configuration-ghc-8.10.x.nix:114:33:
113| hlint = self.hlint_3_4_1;
114| stylish-haskell = doJailbreak self.stylish-haskell_0_14_3_0;
| ^
115|
Did you mean stylish-haskell_0_14_4_0?
The change drops overrides that refer non-existent packages.
2024-01-01 14:14:56 +00:00
maralorn
aa84d903e1
haskellPackages.compact: Unmark broken
2024-01-01 15:11:40 +01:00
Nikolay Korotkiy
8345efdaae
dump1090: fix build on darwin
2024-01-01 18:02:06 +04:00
Nikolay Korotkiy
d7c5da1fa1
Merge pull request #278024 from r-ryantm/auto-update/act
...
act: 0.2.56 -> 0.2.57
2024-01-01 17:34:32 +04:00
Nikolay Korotkiy
65afa3bb3a
Merge pull request #278054 from r-ryantm/auto-update/fzf-make
...
fzf-make: 0.12.0 -> 0.13.0
2024-01-01 17:32:46 +04:00
maralorn
09f447abd2
Merge branch 'ghc-remove-without-lts' into haskell-updates
2024-01-01 14:28:45 +01:00
7c6f434c
9b6e63979f
Merge pull request #276813 from jtojnar/libsoup-no-propagate
...
libsoup: Remove passthru.propagatedUserEnvPackages
2024-01-01 13:26:09 +00:00
maralorn
a7baccff6f
Merge branch 'master' into haskell-updates
2024-01-01 14:25:26 +01:00
7c6f434c
27d55dfae8
Merge pull request #277638 from a-n-n-a-l-e-e/lbzip2-fix
...
lbzip2: apply implicit function definition patch; fix darwin
2024-01-01 13:23:27 +00:00
maralorn
0bd0847ecd
Merge pull request #275616 from sternenseemann/ghc-cross-docs
...
haskell.compiler: also build manual for cross-compilers
2024-01-01 14:22:20 +01:00
maralorn
f3963e1476
Merge pull request #275609 from sternenseemann/ghc981-static
...
pkgsStatic.haskell.packages.ghc98: disable failing haddockPhase
2024-01-01 14:20:56 +01:00
maralorn
91065f31dd
Merge pull request #275606 from sternenseemann/misc-release-haskell
...
haskell: fixes for the benefit of the haskell-updates jobset
2024-01-01 14:19:00 +01:00
Nikolay Korotkiy
2239efa9ae
Merge pull request #278052 from r-ryantm/auto-update/dq
...
dq: 20230101 -> 20240101
2024-01-01 17:17:38 +04:00
maralorn
77480e1fa4
Merge pull request #273955 from zeuner/haskell-alsa-local
...
haskellPackages.PortMidi: fix ALSA plugins load path
2024-01-01 14:15:49 +01:00
R. Ryantm
6f10b0edb2
redis-plus-plus: 1.3.10 -> 1.3.11
2024-01-01 13:04:11 +00:00
maralorn
f963570024
Merge branch 'master' into haskell-updates
2024-01-01 14:02:05 +01:00
maralorn
258151d138
haskellPackages.update-nix-fetchgit: Fix build
2024-01-01 14:00:07 +01:00
R. Ryantm
a55180dc5f
mlib: 0.7.0 -> 0.7.2
2024-01-01 12:54:03 +00:00
Martin Weinelt
9f37ee33d7
zigbee2mqtt: 1.34.0 -> 1.35.0
...
https://github.com/Koenkk/zigbee2mqtt/releases/tag/1.35.0
2024-01-01 13:53:36 +01:00
Martin Weinelt
5c376752ae
Merge pull request #278053 from r-ryantm/auto-update/go2rtc
...
go2rtc: 1.8.4 -> 1.8.5
2024-01-01 13:50:23 +01:00
R. Ryantm
9d21cb8739
mainsail: 2.9.0 -> 2.9.1
2024-01-01 12:47:19 +00:00
Nikolay Korotkiy
6f1df2a405
Merge pull request #278025 from mfrw/mfrw/fzf-0.45.0
...
fzf: 0.44.1 -> 0.45.0
2024-01-01 16:43:28 +04:00
maralorn
b629581dc9
release-haskell: Correctly disable hls jobs on ghc 8.10.7
2024-01-01 13:41:29 +01:00
R. Ryantm
a02e31d0a5
gimoji: 0.7.1 -> 0.7.2
2024-01-01 12:37:55 +00:00
R. Ryantm
f86e2d36bd
fzf-make: 0.12.0 -> 0.13.0
2024-01-01 12:37:54 +00:00
R. Ryantm
c83c12f444
go2rtc: 1.8.4 -> 1.8.5
2024-01-01 12:36:18 +00:00
R. Ryantm
393a122993
dq: 20230101 -> 20240101
2024-01-01 12:25:59 +00:00
R. Ryantm
48d6f26deb
libayatana-common: 0.9.9 -> 0.9.10
2024-01-01 19:38:14 +08:00
Fabian Affolter
2e55cb9b28
cansina: init at 0.9
...
Web Content Discovery Tool
https://github.com/deibit/cansina
2024-01-01 12:06:00 +01:00
R. Ryantm
0c9dbdf9a5
cargo-tally: 1.0.32 -> 1.0.33
2024-01-01 10:47:14 +00:00