Commit Graph

118 Commits

Author SHA1 Message Date
nartsisss
827c26ef73
nak: init at 0.7.6 2024-10-05 18:23:53 +03:00
R. Ryantm
a97827f878 narsil: 1.3.0-187-g96d6b3bbd -> 1.3.0-234-g228c4f0cb 2024-09-30 19:04:54 +00:00
R. Ryantm
184807a8ba navidrome: 0.53.2 -> 0.53.3 2024-09-28 22:14:41 +00:00
Weijia Wang
d2be6dd72a
namespace-cli: 0.0.389 -> 0.0.392 (#344230) 2024-09-27 02:36:14 +02:00
Peder Bergebakken Sundt
3c1d0442f8
navidrome: 0.52.5 -> 0.53.2 (#342802) 2024-09-25 10:44:37 +02: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
f1c471b18f namespace-cli: 0.0.389 -> 0.0.392 2024-09-24 15:00:34 +00:00
squalus
0be740eff1 navidrome: 0.52.5 -> 0.53.2
0.53.0 changelog: https://github.com/navidrome/navidrome/releases/tag/v0.53.0
0.53.1 changelog: https://github.com/navidrome/navidrome/releases/tag/v0.53.1
0.53.2 changelog: https://github.com/navidrome/navidrome/releases/tag/v0.53.2
2024-09-23 12:34:44 -07:00
R. Ryantm
c06b6b1334 narsil: 1.3.0-85-g68f1491ca -> 1.3.0-187-g96d6b3bbd 2024-09-21 22:31:35 +00:00
Anderson Torres
f0e64ce16f treewide: migrate packages maintained by AndersonTorres to by-name
Manual migration for the sake of by-name migration is no longer discouraged
since #340235.
2024-09-16 14:26:47 -03:00
github-actions[bot]
5a1871826e
Merge staging-next into staging 2024-08-29 12:05:39 +00:00
Cosima Neidahl
248e2cf59d
naja: 0-unstable-2024-07-21 -> 0-unstable-2024-08-27, fix darwin (#337288) 2024-08-29 13:38:55 +02:00
Anderson Torres
618cffa8e1 nawk: uses installBin to install the binary 2024-08-28 19:56:16 -03:00
eljamm
26ed90f28f
naja: 0-unstable-2024-07-21 -> 0-unstable-2024-08-27, fix darwin
Co-authored-by: Cosima Neidahl <opna2608@protonmail.com>
2024-08-27 22:49:42 +01:00
Emily
a24a4fd316
nanopb: fix build by resolving name collision (#337119) 2024-08-26 21:23:31 +01:00
Robert Scott
7849cd4882
Merge pull request #325328 from risicle/ris-nanomq-0.22
nanomq: 0.20.8 → 0.22.1
2024-08-25 16:43:16 +01:00
TomaSajt
cb52b4198c
nanopb: fix build by resolving name collision 2024-08-25 01:12:26 +02:00
Robert Scott
36731fc641 nanomq: 0.21.8 -> 0.22.1
disable websocket install-checks for now, as it seems properly
broken
2024-08-24 13:24:16 +01:00
Masum Reza
8180aacf3d
Merge pull request #332084 from afh/update-nawk
nawk: 20240422 -> 20240728
2024-08-19 12:15:47 +05:30
Peder Bergebakken Sundt
e471916645
treewide: passthru nixos test (#334491) 2024-08-18 00:29:43 +02:00
R. Ryantm
b58932b944 namespace-cli: 0.0.388 -> 0.0.389 2024-08-13 15:23:39 +00:00
Alexis Hildebrandt
25f283f361 nawk: reformat using nixfmt 2024-08-05 09:51:15 +02:00
Alexis Hildebrandt
350f99833a nawk: 20240422 -> 20240728 2024-08-05 09:17:35 +02:00
Cosima Neidahl
3b821b4b16
Merge pull request #330385 from eljamm/naja
naja: init at 0-unstable-2024-07-21
2024-08-04 10:34:31 +02:00
adisbladis
e0816431a2 treewide: Pass self when overriding Python
Otherwise references to the Python interpreter inside the set are wrong, as demonstrated by:
``` nix
with import <nixpkgs> { };
let
  python' = python3.override {
    packageOverrides = final: prev: { requests = prev.requests.overridePythonAttrs(old: { version = "1337";  }); };
  };
in python'.pkgs.python.pkgs.requests
```
which returns the _non_ overriden requests.

And the same with `self`:
```
with import <nixpkgs> { };
let
  python' = python3.override {
    self = python';
    packageOverrides = final: prev: { requests = prev.requests.overridePythonAttrs(old: { version = "1337";  }); };
  };
in python'.pkgs.python.pkgs.requests
```
which returns the overriden requests.

This can manifest itself as file collisions when constructing environments or as subtly incorrect dependency graphs.
2024-08-03 12:18:56 +12:00
OPNA2608
f728dd56af naja: Mark broken on Darwin, add temporary note about maintenance 2024-08-01 14:54:39 +02:00
zimbatm
091f5f6540 nar-serve: 0.6.1 -> 0.7.0 2024-07-31 09:57:36 +02:00
zimbatm
7266ad59ce nar-serve: move to by-name 2024-07-31 09:10:29 +02:00
eljamm
03f1c7eefa
naja: init at 0-unstable-2024-07-21
Co-authored-by: Cosima Neidahl <opna2608@protonmail.com>
2024-07-30 22:00:19 +01:00
Peder Bergebakken Sundt
209ede3d0b
Merge pull request #329260 from nadiaholmquist/nanoboyadvance-disable-portable
nanoboyadvance: Disable portable mode
2024-07-30 21:58:40 +02:00
Nick Cao
b7aed13df5
Merge pull request #329768 from r-ryantm/auto-update/narsil
narsil: 1.3.0-84-g042c39e9c -> 1.3.0-85-g68f1491ca
2024-07-25 18:46:29 -04:00
Nick Cao
644961d614
Merge pull request #329760 from r-ryantm/auto-update/namespace-cli
namespace-cli: 0.0.386 -> 0.0.388
2024-07-25 18:38:29 -04:00
R. Ryantm
55b72a47ab narsil: 1.3.0-84-g042c39e9c -> 1.3.0-85-g68f1491ca 2024-07-25 00:44:55 +00:00
R. Ryantm
7e20223bf6 namespace-cli: 0.0.386 -> 0.0.388 2024-07-24 23:54:23 +00:00
Peder Bergebakken Sundt
3e3d630605
Merge pull request #326350 from x123/x123-update-narsil
narsil: 1.3.0-49-gc042b573a -> 1.3.0-84-g042c39e9c
2024-07-25 01:45:35 +02:00
Nadia Holmquist Pedersen
3f7e984342 nanoboyadvance: Disable portable mode 2024-07-22 22:11:38 +02:00
R. Ryantm
3e2f30fe50 namespace-cli: 0.0.381 -> 0.0.386 2024-07-14 06:13:50 +00:00
x123
6e44ea5353 narsil: add x123 as maintainer 2024-07-11 18:58:12 +02:00
x123
7640cf52d5 narsil: 1.3.0-49-gc042b573a -> 1.3.0-84-g042c39e9c 2024-07-11 18:58:12 +02:00
x123
504308e427 narsil: set updateScript 2024-07-11 18:58:09 +02:00
x123
3695eebfd4 narsil: add changelog 2024-07-11 18:31:29 +02:00
x123
2279f8b280 narsil: refactor 2024-07-11 18:30:00 +02:00
Weijia Wang
699de1eff6
Merge pull request #325153 from r-ryantm/auto-update/naps2
naps2: 7.4.2 -> 7.4.3
2024-07-07 20:05:49 +02:00
Nikolay Korotkiy
b8f4ef4f25 nanomq: migrate to by-name 2024-07-07 12:56:14 +01:00
R. Ryantm
008282d408 naps2: 7.4.2 -> 7.4.3 2024-07-07 01:22:27 +00:00
Jan van Brügge
12e9433747
naproche: unstable-2024-01-18 -> unstable-2024-05-19 2024-07-06 18:39:04 +01:00
R. Ryantm
628afbfa24 namespace-cli: 0.0.380 -> 0.0.381 2024-07-03 12:39:05 +00:00
Jan Tojnar
5c5c20919b adwaita-icon-theme: Move from gnome scope to top-level
It is widely used outside gnome – although it probably should not be.
2024-07-01 08:26:46 +02:00
Jan Tojnar
98c35c10ff nautilus: Format 2024-07-01 08:26:44 +02:00
Jan Tojnar
c7c4be759d nautilus-python: Clean up
- Format with nixpkgs-fmt
- Convert to finalAttrs pattern
2024-07-01 08:26:44 +02:00