Moraxyc
c778861ff8
nezha-agent: 0.18.5 -> 0.20.2
2024-10-23 20:22:31 +08:00
Jonas Heinrich
a79426217a
nextcloud-whiteboard-server: init at 1.0.4
2024-10-21 15:47:06 +00:00
Artturin
151109a7b9
netbeans: 22 -> 23 ( #347614 )
2024-10-19 05:58:38 +03:00
Robert Hensing
162ac4324d
treewide: remove qt5.mkDerivation usage (trivial cases) ( #348577 )
2024-10-18 11:40:19 +02:00
David McFarland
2026af42ed
nexusmods-app: 0.6.1 -> 0.6.2 ( #349023 )
2024-10-17 13:18:21 -03:00
DSeeLP
676a133f68
newcomputermodern: 5.1 -> 6.0.0
2024-10-17 08:43:40 +02:00
Matt Sturgeon
1eee78feeb
nexusmods-app: 0.6.1 -> 0.6.2
...
- Bump version
- Disable a newly failing test
2024-10-16 13:15:51 +01:00
Tomo
828accc0e3
neovim-qt: use stdenvNoCC.mkDerivation
...
Also replace `stdenv.hostPlatform.isDarwin` with
`stdenvNoCC.hostPlatform.isDarwin`,
since no compilation occurs in this package.
Part of #180841
2024-10-15 08:06:42 +00:00
lassulus
78e1bdc710
netscanner: 0.5.3 -> 0.6.0 ( #347882 )
2024-10-14 11:44:52 +02:00
Moritz Sanft
52549e6349
nemu: fix build
2024-10-14 08:34:01 +02:00
R. Ryantm
e243629e1a
netscanner: 0.5.3 -> 0.6.0
2024-10-11 08:54:16 +00:00
Kranium Gikos Mendoza
f385d942e1
nextjs-ollama-llm-ui: fix nextjs cache dir ( #344316 )
2024-10-11 17:35:37 +11:00
Kranium Gikos Mendoza
830062864f
nextjs-ollama-llm-ui: 1.0.1 -> 1.1.0
2024-10-11 17:35:12 +11:00
nartsisss
6f115a07ce
netbeans: 22 -> 23
2024-10-10 01:59:54 +03:00
R. Ryantm
120721843a
newsraft: 0.25 -> 0.27
2024-10-06 11:31:47 +00:00
h7x4
1008d5b885
{staruml, figma-linux, infracost, obsidian, scaleway-cli, netbeans}: migrate to by-name ( #332171 )
2024-10-05 21:36:16 +02:00
Thomas Watson
4f60bd6add
nextpnr: fix version display
2024-10-04 11:36:51 -05:00
Gaetan Lepage
a4f79df599
neovim: 0.10.1 -> 0.10.2
...
Diff: https://github.com/neovim/neovim/compare/v0.10.1...v0.10.2
Changelog: https://github.com/neovim/neovim/releases/tag/v0.10.2
2024-10-04 12:02:31 +02:00
Alexis Hildebrandt
f2da14933f
newsboat: 2.36 -> 2.37
2024-09-30 05:16:28 +02:00
Alexis Hildebrandt
f079da8702
newsboat: reformat unix nixfmt-rfc-style
2024-09-30 04:27:51 +02:00
Alexis Hildebrandt
0d65cdb64b
newsboat: migrate to pkgs/by-name
2024-09-30 04:27:13 +02:00
kashw2
3f28609123
netbeans: moved to by-name
2024-09-27 12:51:21 +10:00
Matt Sturgeon
631c290176
nexusmods-app: add missing xdg-utils runtime dependency
...
https://nexus-mods.github.io/NexusMods.App/users/SystemRequirements/#linux-dependencies
2024-09-25 10:39:33 +01:00
Matt Sturgeon
824b19540f
nexusmods-app: 0.4.1 -> 0.6.1
...
Define new constants:
- `NEXUSMODS_APP_USE_SYSTEM_EXTRACTOR`
- `INSTALLATION_METHOD_PACKAGE_MANAGER`
Also:
- Stop setting `APPIMAGE`
We now have `INSTALLATION_METHOD_PACKAGE_MANAGER`
- Set `ReadyToRun`
See https://github.com/NixOS/nixpkgs/pull/331150#discussion_r1725958031
- Install desktop entry, appstream, & icons
See https://nexus-mods.github.io/NexusMods.App/developers/Contributing/#for-package-maintainers
2024-09-25 10:39:33 +01:00
Artturin
e0464e4788
treewide: replace stdenv.is
with stdenv.hostPlatform.is
...
In preparation for the deprecation of `stdenv.isX`.
These shorthands are not conducive to cross-compilation because they
hide the platforms.
Darwin might get cross-compilation for which the continued usage of `stdenv.isDarwin` will get in the way
One example of why this is bad and especially affects compiler packages
https://www.github.com/NixOS/nixpkgs/pull/343059
There are too many files to go through manually but a treewide should
get users thinking when they see a `hostPlatform.isX` in a place where it
doesn't make sense.
```
fd --type f "\.nix" | xargs sd --fixed-strings "stdenv.is" "stdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "stdenv'.is" "stdenv'.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "clangStdenv.is" "clangStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "gccStdenv.is" "gccStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "stdenvNoCC.is" "stdenvNoCC.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "inherit (stdenv) is" "inherit (stdenv.hostPlatform) is"
fd --type f "\.nix" | xargs sd --fixed-strings "buildStdenv.is" "buildStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "effectiveStdenv.is" "effectiveStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "originalStdenv.is" "originalStdenv.hostPlatform.is"
```
2024-09-25 00:04:37 +03:00
R. Ryantm
273ffdbc34
nerdfetch: 8.2.1 -> 8.3.0
2024-09-24 10:43:31 +00:00
h7x4
9a6c76c4af
treewide: remove unused inputs ( #342672 )
2024-09-19 20:36:18 +02:00
Peder Bergebakken Sundt
8c8c27bb19
treewide: remove unused inputs
2024-09-18 01:00:07 +02:00
David McFarland
57f1e66e2c
nexusmods-app: use source-built avalonia
2024-09-17 01:14:27 -03:00
David McFarland
c1ee815d03
dotnet-fixup-hook: obey dontFixup
2024-09-17 01:12:11 -03:00
Vasiliy Kuzmin
dbfe1b17a2
Nextpnr: add himbaechel target
2024-09-15 13:01:30 -05:00
nicoo
2641d97cbf
pkgs/by-name: Convert hashes to SRI format
...
Reproduction script:
# Bulk rewrite
./maintainers/scripts/sha-to-sri.py pkgs/by-name
# Revert some packages which will need manual intervention
for n in amdvlk azure-cli cargo-profiler corefonts flatito fluxcd gist perf_data_converter protoc-gen-js solana-cli swt verible; do
git checkout -- "pkgs/by-name/${n:0:2}/${n}"
done
2024-09-15 11:24:31 +02:00
Weijia Wang
c723c1735e
netbird-dashboard: 2.3.0 -> 2.5.0 ( #332186 )
2024-09-11 17:44:17 +02:00
David McFarland
e6c700ed11
dotnetCorePackages.fetchNupkg: override avalonia.x11 to find native libs
2024-09-06 16:32:08 -03:00
David McFarland
9a0be2fd28
dotnetCorePackages.fetchNupkg: override skiasharp to find fontconfig
2024-09-06 16:05:19 -03:00
R. Ryantm
f63edc3202
netscanner: 0.5.2 -> 0.5.3
2024-09-05 01:25:54 +00:00
David McFarland
683ffbdc5c
buildDotnetModule: inherit enableParallelBuilding ( #339335 )
2024-09-03 20:56:37 -07:00
Aleksana
3d4d6c6149
netfetch: init at 5.2.10 ( #338698 )
2024-09-04 10:55:57 +08:00
Ivan Trubach
4b61c573e2
nexusmods-app: disable parallel building
2024-09-04 00:15:45 +03:00
Adam C. Stephens
ab14ead965
nexus: 3.69.0-02 -> 3.70.1-02 ( #337433 )
2024-09-02 20:46:12 -04:00
Victor Hang
c3b6ef7417
netfetch: init at 5.2.10
...
Signed-off-by: Victor Hang <vhvictorhang@gmail.com>
2024-09-02 17:26:57 +02:00
David McFarland
7bc85af0c5
buildDotnetModule: add testFilters
arg ( #336571 )
2024-09-02 07:09:06 -07:00
github-actions[bot]
d83e365b06
Merge master into staging-next
2024-08-29 18:04:21 +00:00
Fabian Affolter
e3b5d11ba1
netclient: 0.24.3 -> 0.25.0 ( #337945 )
2024-08-29 14:42:15 +02:00
github-actions[bot]
59b57346d9
Merge master into staging-next
2024-08-28 18:04:19 +00:00
David McFarland
a92f0fb638
nexusmods-app: use finalAttrs
( #336221 )
2024-08-28 07:59:29 -07:00
R. Ryantm
c2e8a009ec
netclient: 0.24.3 -> 0.25.0
2024-08-28 14:09:13 +00:00
Matt Sturgeon
c8c753d66d
nexusmods-app: define runtimeInputs
...
Allow overriding what is added to the PATH in the wrapper.
2024-08-28 14:32:09 +01:00
Matt Sturgeon
41fb6f1f0d
nexusmods-app: use finalAttrs
for recursive fixpoint
2024-08-28 14:32:08 +01:00
github-actions[bot]
a97ed4291e
Merge master into staging-next
2024-08-25 06:04:18 +00:00