Merge staging-next into staging

This commit is contained in:
nixpkgs-ci[bot]
2026-03-27 18:20:01 +00:00
committed by GitHub
103 changed files with 1980 additions and 925 deletions
+2
View File
@@ -228,6 +228,8 @@
- `services.taskchampion-sync-server` module have been added an option `services.taskchampion-sync-server.dynamicUser` to use systemd's DynamicUser feature. This is enabled by default when stateVersion is at least 26.05, and disabled otherwise. If you need this feature, you need to set `services.taskchampion-sync-server.dynamicUser` to `true` and migrate `/var/lib/taskchampion-sync-server` to `/var/lib/private/taskchampion-sync-server`.
- Package `jellyseerr` has been renamed to `seerr` following the upstream rename.
- The default packages in `services.jenkins.packages` have been dropped, since not every Jenkins installation needs any package at all. It's more reasonable to leave it empty and let users configure what they need.
## Other Notable Changes {#sec-nixpkgs-release-26.05-notable-changes}
+6
View File
@@ -8502,6 +8502,12 @@
githubId = 88741530;
name = "Fabian Rigoll";
};
fallenbagel = {
name = "fallenbagel";
github = "fallenbagel";
githubId = 98979876;
email = "hello@fallenbagel.com";
};
famfo = {
name = "famfo";
email = "famfo+nixpkgs@famfo.xyz";
@@ -105,7 +105,7 @@ In addition to numerous new and updated packages, this release has the following
- [vmalert](https://victoriametrics.com/), an alerting engine for VictoriaMetrics. Available as [services.vmalert.instances](#opt-services.vmalert.instances._name_.enable).
- [jellyseerr](https://github.com/Fallenbagel/jellyseerr), a web-based requests manager for Jellyfin, forked from Overseerr. Available as [services.jellyseerr](#opt-services.jellyseerr.enable).
- [jellyseerr](https://github.com/Fallenbagel/jellyseerr), a web-based requests manager for Jellyfin, forked from Overseerr. Available as `services.jellyseerr`.
- [kavita](https://kavitareader.com), a self-hosted digital library. Available as [services.kavita](options.html#opt-services.kavita.enable).
@@ -239,6 +239,11 @@ See <https://github.com/NixOS/nixpkgs/issues/481673>.
- `geph` package's built-in GUI `geph5-client-gui` has been [removed](https://github.com/geph-official/geph5/commit/f2221fb8386312daf2cef05483ebb353ff48bdb4) by the upstream. All users who wish to continue using the GUI should install the `gephgui-wry`, which is consistent with the official release version.
- `services.jellyseerr` has been renamed to `services.seerr` following the upstream changes. Notable breaking changes:
- systemd service name changed accordingly.
- Default config directory moved from `/var/lib/jellyseerr/config` to `/var/lib/seerr/`.
- If `stateVersion` is older than `26.05`, the module fall backs to the legacy path value.
- `services.vikunja` has been updated to Vikunja [v1.0.0](https://vikunja.io/changelog/whats-new-in-vikunja-1.0.0/), which introduces multiple breaking changes.
Notable breaking changes:
- CORS is enabled by default. The module now sets
+1 -1
View File
@@ -884,7 +884,6 @@
./services/misc/irkerd.nix
./services/misc/jackett.nix
./services/misc/jellyfin.nix
./services/misc/jellyseerr.nix
./services/misc/kiwix-serve.nix
./services/misc/klipper.nix
./services/misc/languagetool.nix
@@ -950,6 +949,7 @@
./services/misc/rumno.nix
./services/misc/safeeyes.nix
./services/misc/sdrplay.nix
./services/misc/seerr.nix
./services/misc/servarr/lidarr.nix
./services/misc/servarr/prowlarr.nix
./services/misc/servarr/radarr.nix
@@ -300,7 +300,7 @@ in
services.orca.enable = mkDefault true;
services.displayManager = {
sessionPackages = [ kdePackages.plasma-workspace ];
sessionPackages = [ kdePackages.plasma-workspace.sessions ];
defaultSession = mkDefault "plasma";
};
services.displayManager.sddm = {
@@ -65,6 +65,16 @@ in
path = [ cfg.package ];
wantedBy = [ "graphical.target" ];
restartIfChanged = false;
environment.XDG_DATA_DIRS = lib.mkIf (
dmcfg.sessionPackages != [ ]
) "${dmcfg.sessionData.desktops}/share";
};
systemd.user.services.plasma-login = {
overrideStrategy = "asDropin";
environment.XDG_DATA_DIRS = lib.mkIf (
dmcfg.sessionPackages != [ ]
) "${dmcfg.sessionData.desktops}/share";
};
systemd.defaultUnit = "graphical.target";
@@ -5,37 +5,47 @@
...
}:
let
cfg = config.services.jellyseerr;
cfg = config.services.seerr;
# 26.05 introduced a breaking change which is guarded behind stateVersion to avoid
# breaking users.
useNewConfigLocation = lib.versionAtLeast config.system.stateVersion "26.05";
in
{
meta.maintainers = [ lib.maintainers.camillemndn ];
imports = [
(lib.mkRenamedOptionModule [ "services" "jellyseerr" ] [ "services" "seerr" ])
];
options.services.jellyseerr = {
enable = lib.mkEnableOption "Jellyseerr, a requests manager for Jellyfin";
package = lib.mkPackageOption pkgs "jellyseerr" { };
meta.maintainers = with lib.maintainers; [
camillemndn
fallenbagel
];
options.services.seerr = {
enable = lib.mkEnableOption "Seerr, a requests manager for Jellyfin";
package = lib.mkPackageOption pkgs "seerr" { };
openFirewall = lib.mkOption {
type = lib.types.bool;
default = false;
description = "Open port in the firewall for the Jellyseerr web interface.";
description = "Open port in the firewall for the Seerr web interface.";
};
port = lib.mkOption {
type = lib.types.port;
default = 5055;
description = "The port which the Jellyseerr web UI should listen to.";
description = "The port which the Seerr web UI should listen to.";
};
configDir = lib.mkOption {
type = lib.types.path;
default = "/var/lib/jellyseerr/config";
default = if useNewConfigLocation then "/var/lib/seerr/" else "/var/lib/jellyseerr/config";
description = "Config data directory";
};
};
config = lib.mkIf cfg.enable {
systemd.services.jellyseerr = {
description = "Jellyseerr, a requests manager for Jellyfin";
systemd.services.seerr = {
description = "Seerr, a requests manager for Jellyfin";
after = [ "network.target" ];
wantedBy = [ "multi-user.target" ];
environment = {
@@ -44,7 +54,8 @@ in
};
serviceConfig = {
Type = "exec";
StateDirectory = "jellyseerr";
# Note: this should be a parent of configDir.
StateDirectory = if useNewConfigLocation then "seerr" else "jellyseerr";
DynamicUser = true;
ExecStart = lib.getExe cfg.package;
Restart = "on-failure";
@@ -112,7 +112,7 @@ in
trim = lib.mkOption {
description = "whether leading and trailing whitespace should be stripped from the files content before being passed to NetworkManager";
type = lib.types.nullOr lib.types.bool;
default = null;
default = true;
};
};
}
+1 -1
View File
@@ -793,7 +793,6 @@ in
isso = runTest ./isso.nix;
jackett = runTest ./jackett.nix;
jellyfin = runTest ./jellyfin.nix;
jellyseerr = runTest ./jellyseerr.nix;
jenkins = runTest ./jenkins.nix;
jenkins-cli = runTest ./jenkins-cli.nix;
jibri = runTest ./jibri.nix;
@@ -1450,6 +1449,7 @@ in
sdl3 = runTest ./sdl3.nix;
searx = runTest ./searx.nix;
seatd = runTest ./seatd.nix;
seerr = runTest ./seerr.nix;
send = runTest ./send.nix;
service-runner = runTest ./service-runner.nix;
servo = runTest ./servo.nix;
@@ -1,17 +1,20 @@
{ lib, ... }:
{
name = "jellyseerr";
meta.maintainers = with lib.maintainers; [ matteopacini ];
name = "seerr";
meta.maintainers = with lib.maintainers; [
matteopacini
fallenbagel
];
nodes.machine =
{ pkgs, ... }:
{
services.jellyseerr.enable = true;
services.seerr.enable = true;
};
testScript = ''
machine.start()
machine.wait_for_unit("jellyseerr.service")
machine.wait_for_unit("seerr.service")
machine.wait_for_open_port(5055)
machine.succeed("curl --fail http://localhost:5055/")
'';
+1
View File
@@ -23,6 +23,7 @@
};
environment = {
NEXTAUTH_URL = "http://localhost:3000/api/v1/auth";
ALLOW_PRIVATE_NETWORK_ACCESS = "true"; # otherwise we cannot archive localhost
};
};
+4 -4
View File
@@ -39,17 +39,17 @@ let
in
stdenv.mkDerivation (finalAttrs: {
pname = "reaper";
version = "7.59";
version = "7.66";
src = fetchurl {
url = url_for_platform finalAttrs.version stdenv.hostPlatform.qemuArch;
hash =
if stdenv.hostPlatform.isDarwin then
"sha256-S4RAXWss1tPzmO0zzKfkXPrcgBqwNN5EE1jpjEZ5mYk="
"sha256-I+nZtcOhzlrX0xLJBxB6DE1ZtYNgMRHuutOW6MVZuMc="
else
{
x86_64-linux = "sha256-II2QOv7eHD4JtE5We1uuEuCt5RZmK6VFtZFyLEArUSc=";
aarch64-linux = "sha256-/iDQBnYf+1xYJ+JFFT5ikGWDmQdhe2L1o+lZr8pB+Q0=";
x86_64-linux = "sha256-GMNtVql069snZzvaUrw0SEygbbnafS20HSzLdQDC6yU=";
aarch64-linux = "sha256-imoVxmC9oPzcl8dDtrs93/ADEB9NQFCThHZlxb8FIac=";
}
.${stdenv.hostPlatform.system};
};
@@ -3552,8 +3552,8 @@ let
mktplcRef = {
name = "vscode-just-syntax";
publisher = "nefrob";
version = "0.9.1";
hash = "sha256-yl9v4sL1yWzKwE0MIk7BeAd4/FkLmxQaW5ENb8UVNIU=";
version = "0.10.0";
hash = "sha256-dBNftT+yhyfXutDtRvihwl1WrgFENR61eFh9ONqjjq0=";
};
meta = {
changelog = "https://marketplace.visualstudio.com/items/nefrob.vscode-just-syntax/changelog";
@@ -7,8 +7,8 @@ vscode-utils.buildVscodeMarketplaceExtension {
mktplcRef = {
name = "claude-dev";
publisher = "saoudrizwan";
version = "3.73.0";
hash = "sha256-gPB5/CUw5GQ2jIQzRQ4/osJOkEHDsGY8ATy9lTfBwW8=";
version = "3.75.0";
hash = "sha256-ckOvU9aWSASUmOqJe+4u4+E3C7Nf2a6tFkO+P4MLt9k=";
};
meta = {
@@ -75,7 +75,7 @@ let
"9.0.1".sha256 = "sha256-gRgQhFiYvGR/Z46TmTl1bgN9O32nifxQGdrzfw0WHrk=";
"9.1.0".sha256 = "sha256-+QL7I1/0BfT87n7lSaOmpHj2jJuDB4idWhAxwzvVQOE=";
"9.1.1".sha256 = "sha256-aFsGsFzexyDnOVarHPKs35HjiV8uUCpeOKSl15wXZ4s=";
"9.2+rc2".sha256 = "sha256-L6V9Vyv8Q0IWpGfXqL/YKcpx/gLBa7k9rnPvRGvAO+M=";
"9.2.0".sha256 = "sha256-rVhv2GLImdVPgRwwTQ+wiWNtRUflMrES0ElIrdTIN1s=";
};
releaseRev = v: "V${v}";
fetched =
@@ -28,7 +28,7 @@ let
"9.0.1".sha256 = "sha256-gRgQhFiYvGR/Z46TmTl1bgN9O32nifxQGdrzfw0WHrk=";
"9.1.0".sha256 = "sha256-+QL7I1/0BfT87n7lSaOmpHj2jJuDB4idWhAxwzvVQOE=";
"9.1.1".sha256 = "sha256-aFsGsFzexyDnOVarHPKs35HjiV8uUCpeOKSl15wXZ4s=";
"9.2+rc2".sha256 = "sha256-L6V9Vyv8Q0IWpGfXqL/YKcpx/gLBa7k9rnPvRGvAO+M=";
"9.2.0".sha256 = "sha256-rVhv2GLImdVPgRwwTQ+wiWNtRUflMrES0ElIrdTIN1s=";
};
releaseRev = v: "V${v}";
fetched =
@@ -70,7 +70,7 @@ stdenv.mkDerivation rec {
installPhase = ''
runHook preInstall
install -Dm444 90secondportraits.love $out/share/games/lovegames/90secondportraits.love
makeWrapper ${love}/bin/love $out/bin/90secondportraits \
makeWrapper ${lib.getExe love} $out/bin/90secondportraits \
--add-flags $out/share/games/lovegames/90secondportraits.love
runHook postInstall
'';
@@ -78,7 +78,7 @@ stdenv.mkDerivation rec {
meta = {
description = "Silly speed painting game";
mainProgram = "90secondportraits";
platforms = lib.platforms.linux;
platforms = love.meta.platforms;
license = with lib.licenses; [
zlib
cc-by-sa-40
+2 -2
View File
@@ -33,14 +33,14 @@ let
in
pythonPackages.buildPythonApplication rec {
pname = "alpaca";
version = "9.2.1";
version = "9.2.2";
pyproject = false; # Built with meson
src = fetchFromGitHub {
owner = "Jeffser";
repo = "Alpaca";
tag = version;
hash = "sha256-deTn3Q2cy56Qj00dYp2QrCHif+Pk3t110HRTnie9/b8=";
hash = "sha256-5ZvvYsWfj51ie8LOP0fWeg3lDBHGjLwDjz4wQIvCj4A=";
};
postPatch = ''
@@ -8,13 +8,13 @@
anki-utils.buildAnkiAddon (finalAttrs: {
pname = "fsrs4anki-helper";
version = "24.06.3-unstable-2025-01-28";
version = "24.06.3-unstable-2026-03-27";
src = fetchFromGitHub {
owner = "open-spaced-repetition";
repo = "fsrs4anki-helper";
rev = "8934a5d53caa68bf688e6b0964c36fb5a87970c0";
hash = "sha256-2vDPEXfFeR7z8WMC96bSaDJ2nLN16dZicAVu1Nnq558=";
rev = "de3adb6e4dd15f38e2d2e9ffc5217a86987cda87";
hash = "sha256-oW3mWjKno/dTWTurBgiYtTKWdNK4aymmGt+qnNAIh9Y=";
};
postFixup = ''
+3 -3
View File
@@ -26,7 +26,7 @@ buildGoModule (finalAttrs: {
# Use only versions specified in anytype-ts middleware.version file:
# https://github.com/anyproto/anytype-ts/blob/v<anytype-ts-version>/middleware.version
version = "0.48.5";
version = "0.49.0-rc08";
# Update only together with 'anytype' package.
# nixpkgs-update: no auto update
@@ -34,10 +34,10 @@ buildGoModule (finalAttrs: {
owner = "anyproto";
repo = "anytype-heart";
tag = "v${finalAttrs.version}";
hash = "sha256-h7oXx/twHXWb97xHr5hoviYY5lRLKUnT+uMIiLlD5pw=";
hash = "sha256-gTUesFf6cDwsFCEUjpcy9VA67GwuZ9mNTih4HC0Vi7g=";
};
vendorHash = "sha256-vmOEt3cpkq8JJ3s6+VUOOwr+DyF8W1pavW1P+XnrBw8=";
vendorHash = "sha256-1D7v/lgmoKOOHNG3vgpzDpWQ66lmmP8IeZ5rvXe4D9M=";
subPackages = [ "cmd/grpcserver" ];
tags = [
+5 -5
View File
@@ -17,23 +17,23 @@
buildNpmPackage (finalAttrs: {
pname = "anytype";
version = "0.54.9";
version = "0.54.11";
src = fetchFromGitHub {
owner = "anyproto";
repo = "anytype-ts";
tag = "v${finalAttrs.version}";
hash = "sha256-Ciah+JSy4j4u0FvHugZTYJAf8a0kv9jmgWnNSqdzKhw=";
hash = "sha256-HF7bP3Ry3djNQnFDl0v6x9hzMpSLMXyI6UBItgGT+DI=";
};
locales = fetchFromGitHub {
owner = "anyproto";
repo = "l10n-anytype-ts";
rev = "d22d8b4175dfca766c00cca6e575da19f0390bd4";
hash = "sha256-LEKdZPs/TkDeT1glUNUBhWBly63P4Im4fHeuEvzLYUI=";
rev = "afa12aeb0cea6c77ce38c3e3bfd082d532948a1c";
hash = "sha256-YpOkmm7vW97t19twfLNExRHQvLVcrC+oDtHjwJL9dx8=";
};
npmDepsHash = "sha256-GIGqaB7GeLDtxr8rV19o/nBqIlkjlLF/pR/mwGSogQE=";
npmDepsHash = "sha256-/QWHJ2grw34LOEIDn93WDTEpQH001vVtuQgncR2SRYQ=";
# npm dependency install fails with nodejs_24: https://github.com/NixOS/nixpkgs/issues/474535
nodejs = nodejs_22;
+79 -79
View File
@@ -3,474 +3,474 @@
"pname": "Castle.Core",
"version": "5.1.1",
"hash": "sha256-oVkQB+ON7S6Q27OhXrTLaxTL0kWB58HZaFFuiw4iTrE=",
"url": "https://pkgs.dev.azure.com/mseng/c86767d8-af79-4303-a7e6-21da0ba435e2/_packaging/a319f538-6c19-4e2e-9df3-0222939da271/nuget/v3/flat2/castle.core/5.1.1/castle.core.5.1.1.nupkg"
"url": "https://pkgs.dev.azure.com/artifacts-public/02d91361-94bc-4deb-ad0d-192aeb45aba2/_packaging/ed062375-12d3-41ae-84aa-f3a5cee3a2a8/nuget/v3/flat2/castle.core/5.1.1/castle.core.5.1.1.nupkg"
},
{
"pname": "FluentAssertions",
"version": "5.9.0",
"hash": "sha256-HV33Gw4fNoJsJkrqhWvzAlHb8qhkhmXosV5kpQy1t4Y=",
"url": "https://pkgs.dev.azure.com/mseng/c86767d8-af79-4303-a7e6-21da0ba435e2/_packaging/a319f538-6c19-4e2e-9df3-0222939da271/nuget/v3/flat2/fluentassertions/5.9.0/fluentassertions.5.9.0.nupkg"
"url": "https://pkgs.dev.azure.com/artifacts-public/02d91361-94bc-4deb-ad0d-192aeb45aba2/_packaging/ed062375-12d3-41ae-84aa-f3a5cee3a2a8/nuget/v3/flat2/fluentassertions/5.9.0/fluentassertions.5.9.0.nupkg"
},
{
"pname": "Microsoft.ApplicationInsights",
"version": "2.22.0",
"hash": "sha256-mUQ63atpT00r49ca50uZu2YCiLg3yd6r3HzTryqcuEA=",
"url": "https://pkgs.dev.azure.com/mseng/c86767d8-af79-4303-a7e6-21da0ba435e2/_packaging/a319f538-6c19-4e2e-9df3-0222939da271/nuget/v3/flat2/microsoft.applicationinsights/2.22.0/microsoft.applicationinsights.2.22.0.nupkg"
"url": "https://pkgs.dev.azure.com/artifacts-public/02d91361-94bc-4deb-ad0d-192aeb45aba2/_packaging/ed062375-12d3-41ae-84aa-f3a5cee3a2a8/nuget/v3/flat2/microsoft.applicationinsights/2.22.0/microsoft.applicationinsights.2.22.0.nupkg"
},
{
"pname": "Microsoft.Build.Tasks.Git",
"version": "1.0.0-beta2-19554-01",
"hash": "sha256-iFiNU39SAPMfjk/TjTv7AaVIPuermvM68y1ubqfax+c=",
"url": "https://pkgs.dev.azure.com/mseng/c86767d8-af79-4303-a7e6-21da0ba435e2/_packaging/a319f538-6c19-4e2e-9df3-0222939da271/nuget/v3/flat2/microsoft.build.tasks.git/1.0.0-beta2-19554-01/microsoft.build.tasks.git.1.0.0-beta2-19554-01.nupkg"
"url": "https://pkgs.dev.azure.com/artifacts-public/02d91361-94bc-4deb-ad0d-192aeb45aba2/_packaging/ed062375-12d3-41ae-84aa-f3a5cee3a2a8/nuget/v3/flat2/microsoft.build.tasks.git/1.0.0-beta2-19554-01/microsoft.build.tasks.git.1.0.0-beta2-19554-01.nupkg"
},
{
"pname": "Microsoft.CodeCoverage",
"version": "17.13.0",
"hash": "sha256-GKrIxeyQo5Az1mztfQgea1kGtJwonnNOrXK/0ULfu8o=",
"url": "https://pkgs.dev.azure.com/mseng/c86767d8-af79-4303-a7e6-21da0ba435e2/_packaging/a319f538-6c19-4e2e-9df3-0222939da271/nuget/v3/flat2/microsoft.codecoverage/17.13.0/microsoft.codecoverage.17.13.0.nupkg"
"url": "https://pkgs.dev.azure.com/artifacts-public/02d91361-94bc-4deb-ad0d-192aeb45aba2/_packaging/ed062375-12d3-41ae-84aa-f3a5cee3a2a8/nuget/v3/flat2/microsoft.codecoverage/17.13.0/microsoft.codecoverage.17.13.0.nupkg"
},
{
"pname": "Microsoft.DiaSymReader",
"version": "2.0.0",
"hash": "sha256-8hotZmh8Rb6Q6oD9Meb74SvAdbDo39Y/1m8h43HHjjw=",
"url": "https://pkgs.dev.azure.com/mseng/c86767d8-af79-4303-a7e6-21da0ba435e2/_packaging/a319f538-6c19-4e2e-9df3-0222939da271/nuget/v3/flat2/microsoft.diasymreader/2.0.0/microsoft.diasymreader.2.0.0.nupkg"
"url": "https://pkgs.dev.azure.com/artifacts-public/02d91361-94bc-4deb-ad0d-192aeb45aba2/_packaging/ed062375-12d3-41ae-84aa-f3a5cee3a2a8/nuget/v3/flat2/microsoft.diasymreader/2.0.0/microsoft.diasymreader.2.0.0.nupkg"
},
{
"pname": "Microsoft.Extensions.DependencyInjection",
"version": "6.0.0",
"hash": "sha256-gZuMaunMJVyvvepuzNodGPRc6eqKH//bks3957dYkPI=",
"url": "https://pkgs.dev.azure.com/mseng/c86767d8-af79-4303-a7e6-21da0ba435e2/_packaging/a319f538-6c19-4e2e-9df3-0222939da271/nuget/v3/flat2/microsoft.extensions.dependencyinjection/6.0.0/microsoft.extensions.dependencyinjection.6.0.0.nupkg"
"url": "https://pkgs.dev.azure.com/artifacts-public/02d91361-94bc-4deb-ad0d-192aeb45aba2/_packaging/ed062375-12d3-41ae-84aa-f3a5cee3a2a8/nuget/v3/flat2/microsoft.extensions.dependencyinjection/6.0.0/microsoft.extensions.dependencyinjection.6.0.0.nupkg"
},
{
"pname": "Microsoft.Extensions.DependencyInjection.Abstractions",
"version": "6.0.0",
"hash": "sha256-SZke0jNKIqJvvukdta+MgIlGsrP2EdPkkS8lfLg7Ju4=",
"url": "https://pkgs.dev.azure.com/mseng/c86767d8-af79-4303-a7e6-21da0ba435e2/_packaging/a319f538-6c19-4e2e-9df3-0222939da271/nuget/v3/flat2/microsoft.extensions.dependencyinjection.abstractions/6.0.0/microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg"
"url": "https://pkgs.dev.azure.com/artifacts-public/02d91361-94bc-4deb-ad0d-192aeb45aba2/_packaging/ed062375-12d3-41ae-84aa-f3a5cee3a2a8/nuget/v3/flat2/microsoft.extensions.dependencyinjection.abstractions/6.0.0/microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg"
},
{
"pname": "Microsoft.Extensions.DependencyModel",
"version": "6.0.1",
"hash": "sha256-ArXJ7mfSywrfif29cfkeaXL1s0soZSi+RZgAimukqNw=",
"url": "https://pkgs.dev.azure.com/mseng/c86767d8-af79-4303-a7e6-21da0ba435e2/_packaging/a319f538-6c19-4e2e-9df3-0222939da271/nuget/v3/flat2/microsoft.extensions.dependencymodel/6.0.1/microsoft.extensions.dependencymodel.6.0.1.nupkg"
"url": "https://pkgs.dev.azure.com/artifacts-public/02d91361-94bc-4deb-ad0d-192aeb45aba2/_packaging/ed062375-12d3-41ae-84aa-f3a5cee3a2a8/nuget/v3/flat2/microsoft.extensions.dependencymodel/6.0.1/microsoft.extensions.dependencymodel.6.0.1.nupkg"
},
{
"pname": "Microsoft.Extensions.Logging",
"version": "6.0.0",
"hash": "sha256-8WsZKRGfXW5MsXkMmNVf6slrkw+cR005czkOP2KUqTk=",
"url": "https://pkgs.dev.azure.com/mseng/c86767d8-af79-4303-a7e6-21da0ba435e2/_packaging/a319f538-6c19-4e2e-9df3-0222939da271/nuget/v3/flat2/microsoft.extensions.logging/6.0.0/microsoft.extensions.logging.6.0.0.nupkg"
"url": "https://pkgs.dev.azure.com/artifacts-public/02d91361-94bc-4deb-ad0d-192aeb45aba2/_packaging/ed062375-12d3-41ae-84aa-f3a5cee3a2a8/nuget/v3/flat2/microsoft.extensions.logging/6.0.0/microsoft.extensions.logging.6.0.0.nupkg"
},
{
"pname": "Microsoft.Extensions.Logging.Abstractions",
"version": "6.0.3",
"hash": "sha256-7M4sSypxNc5s2Py1JrCmkIsCtQ2rnK7lvfs3q/g6+dI=",
"url": "https://pkgs.dev.azure.com/mseng/c86767d8-af79-4303-a7e6-21da0ba435e2/_packaging/a319f538-6c19-4e2e-9df3-0222939da271/nuget/v3/flat2/microsoft.extensions.logging.abstractions/6.0.3/microsoft.extensions.logging.abstractions.6.0.3.nupkg"
"url": "https://pkgs.dev.azure.com/artifacts-public/02d91361-94bc-4deb-ad0d-192aeb45aba2/_packaging/ed062375-12d3-41ae-84aa-f3a5cee3a2a8/nuget/v3/flat2/microsoft.extensions.logging.abstractions/6.0.3/microsoft.extensions.logging.abstractions.6.0.3.nupkg"
},
{
"pname": "Microsoft.Extensions.Options",
"version": "6.0.0",
"hash": "sha256-DxnEgGiCXpkrxFkxXtOXqwaiAtoIjA8VSSWCcsW0FwE=",
"url": "https://pkgs.dev.azure.com/mseng/c86767d8-af79-4303-a7e6-21da0ba435e2/_packaging/a319f538-6c19-4e2e-9df3-0222939da271/nuget/v3/flat2/microsoft.extensions.options/6.0.0/microsoft.extensions.options.6.0.0.nupkg"
"url": "https://pkgs.dev.azure.com/artifacts-public/02d91361-94bc-4deb-ad0d-192aeb45aba2/_packaging/ed062375-12d3-41ae-84aa-f3a5cee3a2a8/nuget/v3/flat2/microsoft.extensions.options/6.0.0/microsoft.extensions.options.6.0.0.nupkg"
},
{
"pname": "Microsoft.Extensions.Primitives",
"version": "6.0.0",
"hash": "sha256-AgvysszpQ11AiTBJFkvSy8JnwIWTj15Pfek7T7ThUc4=",
"url": "https://pkgs.dev.azure.com/mseng/c86767d8-af79-4303-a7e6-21da0ba435e2/_packaging/a319f538-6c19-4e2e-9df3-0222939da271/nuget/v3/flat2/microsoft.extensions.primitives/6.0.0/microsoft.extensions.primitives.6.0.0.nupkg"
"url": "https://pkgs.dev.azure.com/artifacts-public/02d91361-94bc-4deb-ad0d-192aeb45aba2/_packaging/ed062375-12d3-41ae-84aa-f3a5cee3a2a8/nuget/v3/flat2/microsoft.extensions.primitives/6.0.0/microsoft.extensions.primitives.6.0.0.nupkg"
},
{
"pname": "Microsoft.Identity.Client",
"version": "4.77.1",
"hash": "sha256-Kj+pzEEhnr+ulzETuvOKmxmRfdYv5ZfToHc3AvyQEr0=",
"url": "https://pkgs.dev.azure.com/mseng/c86767d8-af79-4303-a7e6-21da0ba435e2/_packaging/a319f538-6c19-4e2e-9df3-0222939da271/nuget/v3/flat2/microsoft.identity.client/4.77.1/microsoft.identity.client.4.77.1.nupkg"
"url": "https://pkgs.dev.azure.com/artifacts-public/02d91361-94bc-4deb-ad0d-192aeb45aba2/_packaging/ed062375-12d3-41ae-84aa-f3a5cee3a2a8/nuget/v3/flat2/microsoft.identity.client/4.77.1/microsoft.identity.client.4.77.1.nupkg"
},
{
"pname": "Microsoft.Identity.Client.Broker",
"version": "4.77.1",
"hash": "sha256-ZttD8DujZB3HUx+oeADnkiMDLe8Wb2eFw03vlAtOLz4=",
"url": "https://pkgs.dev.azure.com/mseng/c86767d8-af79-4303-a7e6-21da0ba435e2/_packaging/a319f538-6c19-4e2e-9df3-0222939da271/nuget/v3/flat2/microsoft.identity.client.broker/4.77.1/microsoft.identity.client.broker.4.77.1.nupkg"
"url": "https://pkgs.dev.azure.com/artifacts-public/02d91361-94bc-4deb-ad0d-192aeb45aba2/_packaging/ed062375-12d3-41ae-84aa-f3a5cee3a2a8/nuget/v3/flat2/microsoft.identity.client.broker/4.77.1/microsoft.identity.client.broker.4.77.1.nupkg"
},
{
"pname": "Microsoft.Identity.Client.Extensions.Msal",
"version": "4.77.1",
"hash": "sha256-s1JeDN3H3auUz2Js+ladXfwz0Z0AKIWxLPTb5+zE1TM=",
"url": "https://pkgs.dev.azure.com/mseng/c86767d8-af79-4303-a7e6-21da0ba435e2/_packaging/a319f538-6c19-4e2e-9df3-0222939da271/nuget/v3/flat2/microsoft.identity.client.extensions.msal/4.77.1/microsoft.identity.client.extensions.msal.4.77.1.nupkg"
"url": "https://pkgs.dev.azure.com/artifacts-public/02d91361-94bc-4deb-ad0d-192aeb45aba2/_packaging/ed062375-12d3-41ae-84aa-f3a5cee3a2a8/nuget/v3/flat2/microsoft.identity.client.extensions.msal/4.77.1/microsoft.identity.client.extensions.msal.4.77.1.nupkg"
},
{
"pname": "Microsoft.Identity.Client.NativeInterop",
"version": "0.19.4",
"hash": "sha256-f4FmUEUZ5O20itkik7noUzQdawKKVlmVsgebFE4PvWA=",
"url": "https://pkgs.dev.azure.com/mseng/c86767d8-af79-4303-a7e6-21da0ba435e2/_packaging/a319f538-6c19-4e2e-9df3-0222939da271/nuget/v3/flat2/microsoft.identity.client.nativeinterop/0.19.4/microsoft.identity.client.nativeinterop.0.19.4.nupkg"
"url": "https://pkgs.dev.azure.com/artifacts-public/02d91361-94bc-4deb-ad0d-192aeb45aba2/_packaging/ed062375-12d3-41ae-84aa-f3a5cee3a2a8/nuget/v3/flat2/microsoft.identity.client.nativeinterop/0.19.4/microsoft.identity.client.nativeinterop.0.19.4.nupkg"
},
{
"pname": "Microsoft.IdentityModel.Abstractions",
"version": "8.14.0",
"hash": "sha256-bkCuz1Wj56N+LHWLvHKLcCtIRqBK+3k5vD2qfB7xXKk=",
"url": "https://pkgs.dev.azure.com/mseng/c86767d8-af79-4303-a7e6-21da0ba435e2/_packaging/a319f538-6c19-4e2e-9df3-0222939da271/nuget/v3/flat2/microsoft.identitymodel.abstractions/8.14.0/microsoft.identitymodel.abstractions.8.14.0.nupkg"
"url": "https://pkgs.dev.azure.com/artifacts-public/02d91361-94bc-4deb-ad0d-192aeb45aba2/_packaging/ed062375-12d3-41ae-84aa-f3a5cee3a2a8/nuget/v3/flat2/microsoft.identitymodel.abstractions/8.14.0/microsoft.identitymodel.abstractions.8.14.0.nupkg"
},
{
"pname": "Microsoft.NET.Test.Sdk",
"version": "17.13.0",
"hash": "sha256-sc2wvyV8cGm1FrNP2GGHEI584RCvRPu15erYCsgw5QY=",
"url": "https://pkgs.dev.azure.com/mseng/c86767d8-af79-4303-a7e6-21da0ba435e2/_packaging/a319f538-6c19-4e2e-9df3-0222939da271/nuget/v3/flat2/microsoft.net.test.sdk/17.13.0/microsoft.net.test.sdk.17.13.0.nupkg"
"url": "https://pkgs.dev.azure.com/artifacts-public/02d91361-94bc-4deb-ad0d-192aeb45aba2/_packaging/ed062375-12d3-41ae-84aa-f3a5cee3a2a8/nuget/v3/flat2/microsoft.net.test.sdk/17.13.0/microsoft.net.test.sdk.17.13.0.nupkg"
},
{
"pname": "Microsoft.NETCore.Platforms",
"version": "1.1.0",
"hash": "sha256-FeM40ktcObQJk4nMYShB61H/E8B7tIKfl9ObJ0IOcCM=",
"url": "https://pkgs.dev.azure.com/mseng/c86767d8-af79-4303-a7e6-21da0ba435e2/_packaging/a319f538-6c19-4e2e-9df3-0222939da271/nuget/v3/flat2/microsoft.netcore.platforms/1.1.0/microsoft.netcore.platforms.1.1.0.nupkg"
"url": "https://pkgs.dev.azure.com/artifacts-public/02d91361-94bc-4deb-ad0d-192aeb45aba2/_packaging/ed062375-12d3-41ae-84aa-f3a5cee3a2a8/nuget/v3/flat2/microsoft.netcore.platforms/1.1.0/microsoft.netcore.platforms.1.1.0.nupkg"
},
{
"pname": "Microsoft.SourceLink.Common",
"version": "1.0.0-beta2-19554-01",
"hash": "sha256-luDgxsHIlnI3udJ9Ieil/RkWehRJdwH5ZZ3ugmRh55E=",
"url": "https://pkgs.dev.azure.com/mseng/c86767d8-af79-4303-a7e6-21da0ba435e2/_packaging/a319f538-6c19-4e2e-9df3-0222939da271/nuget/v3/flat2/microsoft.sourcelink.common/1.0.0-beta2-19554-01/microsoft.sourcelink.common.1.0.0-beta2-19554-01.nupkg"
"url": "https://pkgs.dev.azure.com/artifacts-public/02d91361-94bc-4deb-ad0d-192aeb45aba2/_packaging/ed062375-12d3-41ae-84aa-f3a5cee3a2a8/nuget/v3/flat2/microsoft.sourcelink.common/1.0.0-beta2-19554-01/microsoft.sourcelink.common.1.0.0-beta2-19554-01.nupkg"
},
{
"pname": "Microsoft.SourceLink.GitHub",
"version": "1.0.0-beta2-19554-01",
"hash": "sha256-Pia4AX5rM1LDSQP9RLiBv147M+/KNaSh/WneJILx7C4=",
"url": "https://pkgs.dev.azure.com/mseng/c86767d8-af79-4303-a7e6-21da0ba435e2/_packaging/a319f538-6c19-4e2e-9df3-0222939da271/nuget/v3/flat2/microsoft.sourcelink.github/1.0.0-beta2-19554-01/microsoft.sourcelink.github.1.0.0-beta2-19554-01.nupkg"
"url": "https://pkgs.dev.azure.com/artifacts-public/02d91361-94bc-4deb-ad0d-192aeb45aba2/_packaging/ed062375-12d3-41ae-84aa-f3a5cee3a2a8/nuget/v3/flat2/microsoft.sourcelink.github/1.0.0-beta2-19554-01/microsoft.sourcelink.github.1.0.0-beta2-19554-01.nupkg"
},
{
"pname": "Microsoft.Testing.Extensions.CodeCoverage",
"version": "17.13.1",
"hash": "sha256-m74V71udgx4OZScpfyVeA0Oj5JKIvdU1W5wzXyeUHLQ=",
"url": "https://pkgs.dev.azure.com/mseng/c86767d8-af79-4303-a7e6-21da0ba435e2/_packaging/a319f538-6c19-4e2e-9df3-0222939da271/nuget/v3/flat2/microsoft.testing.extensions.codecoverage/17.13.1/microsoft.testing.extensions.codecoverage.17.13.1.nupkg"
"url": "https://pkgs.dev.azure.com/artifacts-public/02d91361-94bc-4deb-ad0d-192aeb45aba2/_packaging/ed062375-12d3-41ae-84aa-f3a5cee3a2a8/nuget/v3/flat2/microsoft.testing.extensions.codecoverage/17.13.1/microsoft.testing.extensions.codecoverage.17.13.1.nupkg"
},
{
"pname": "Microsoft.Testing.Extensions.Telemetry",
"version": "1.6.2",
"hash": "sha256-GZYUH+0vWAif5p4S81Oo9Tsez68ylsLjEQWhI2rgcik=",
"url": "https://pkgs.dev.azure.com/mseng/c86767d8-af79-4303-a7e6-21da0ba435e2/_packaging/a319f538-6c19-4e2e-9df3-0222939da271/nuget/v3/flat2/microsoft.testing.extensions.telemetry/1.6.2/microsoft.testing.extensions.telemetry.1.6.2.nupkg"
"url": "https://pkgs.dev.azure.com/artifacts-public/02d91361-94bc-4deb-ad0d-192aeb45aba2/_packaging/ed062375-12d3-41ae-84aa-f3a5cee3a2a8/nuget/v3/flat2/microsoft.testing.extensions.telemetry/1.6.2/microsoft.testing.extensions.telemetry.1.6.2.nupkg"
},
{
"pname": "Microsoft.Testing.Extensions.TrxReport",
"version": "1.6.2",
"hash": "sha256-21x7FSFGVGXS8fkOQyr3jxsemxU8+7ugkVzo+mOP0Ic=",
"url": "https://pkgs.dev.azure.com/mseng/c86767d8-af79-4303-a7e6-21da0ba435e2/_packaging/a319f538-6c19-4e2e-9df3-0222939da271/nuget/v3/flat2/microsoft.testing.extensions.trxreport/1.6.2/microsoft.testing.extensions.trxreport.1.6.2.nupkg"
"url": "https://pkgs.dev.azure.com/artifacts-public/02d91361-94bc-4deb-ad0d-192aeb45aba2/_packaging/ed062375-12d3-41ae-84aa-f3a5cee3a2a8/nuget/v3/flat2/microsoft.testing.extensions.trxreport/1.6.2/microsoft.testing.extensions.trxreport.1.6.2.nupkg"
},
{
"pname": "Microsoft.Testing.Extensions.TrxReport.Abstractions",
"version": "1.6.2",
"hash": "sha256-UOpDBbW3xgahofRjqdw3wUj63zXVdkIAfUE7dA4uI4Y=",
"url": "https://pkgs.dev.azure.com/mseng/c86767d8-af79-4303-a7e6-21da0ba435e2/_packaging/a319f538-6c19-4e2e-9df3-0222939da271/nuget/v3/flat2/microsoft.testing.extensions.trxreport.abstractions/1.6.2/microsoft.testing.extensions.trxreport.abstractions.1.6.2.nupkg"
"url": "https://pkgs.dev.azure.com/artifacts-public/02d91361-94bc-4deb-ad0d-192aeb45aba2/_packaging/ed062375-12d3-41ae-84aa-f3a5cee3a2a8/nuget/v3/flat2/microsoft.testing.extensions.trxreport.abstractions/1.6.2/microsoft.testing.extensions.trxreport.abstractions.1.6.2.nupkg"
},
{
"pname": "Microsoft.Testing.Extensions.VSTestBridge",
"version": "1.6.2",
"hash": "sha256-SWaSPgc2PQNqsz7ea/SQsmqOX6le6dmrDbwCHfbppZo=",
"url": "https://pkgs.dev.azure.com/mseng/c86767d8-af79-4303-a7e6-21da0ba435e2/_packaging/a319f538-6c19-4e2e-9df3-0222939da271/nuget/v3/flat2/microsoft.testing.extensions.vstestbridge/1.6.2/microsoft.testing.extensions.vstestbridge.1.6.2.nupkg"
"url": "https://pkgs.dev.azure.com/artifacts-public/02d91361-94bc-4deb-ad0d-192aeb45aba2/_packaging/ed062375-12d3-41ae-84aa-f3a5cee3a2a8/nuget/v3/flat2/microsoft.testing.extensions.vstestbridge/1.6.2/microsoft.testing.extensions.vstestbridge.1.6.2.nupkg"
},
{
"pname": "Microsoft.Testing.Platform",
"version": "1.4.3",
"hash": "sha256-KqB3+uBGl0edpaGl6Qykubb3OrVTs6IcPWc59UQ/Iww=",
"url": "https://pkgs.dev.azure.com/mseng/c86767d8-af79-4303-a7e6-21da0ba435e2/_packaging/a319f538-6c19-4e2e-9df3-0222939da271/nuget/v3/flat2/microsoft.testing.platform/1.4.3/microsoft.testing.platform.1.4.3.nupkg"
"url": "https://pkgs.dev.azure.com/artifacts-public/02d91361-94bc-4deb-ad0d-192aeb45aba2/_packaging/ed062375-12d3-41ae-84aa-f3a5cee3a2a8/nuget/v3/flat2/microsoft.testing.platform/1.4.3/microsoft.testing.platform.1.4.3.nupkg"
},
{
"pname": "Microsoft.Testing.Platform",
"version": "1.6.2",
"hash": "sha256-RfdgATa3aTYLpGfv8ORI5uEP8dH87L5/gBDkxAG6ho4=",
"url": "https://pkgs.dev.azure.com/mseng/c86767d8-af79-4303-a7e6-21da0ba435e2/_packaging/a319f538-6c19-4e2e-9df3-0222939da271/nuget/v3/flat2/microsoft.testing.platform/1.6.2/microsoft.testing.platform.1.6.2.nupkg"
"url": "https://pkgs.dev.azure.com/artifacts-public/02d91361-94bc-4deb-ad0d-192aeb45aba2/_packaging/ed062375-12d3-41ae-84aa-f3a5cee3a2a8/nuget/v3/flat2/microsoft.testing.platform/1.6.2/microsoft.testing.platform.1.6.2.nupkg"
},
{
"pname": "Microsoft.Testing.Platform.MSBuild",
"version": "1.6.2",
"hash": "sha256-bzlz10QeFrCAR+1og0gXbxSbpO64wCFrwAhBUwAp0nI=",
"url": "https://pkgs.dev.azure.com/mseng/c86767d8-af79-4303-a7e6-21da0ba435e2/_packaging/a319f538-6c19-4e2e-9df3-0222939da271/nuget/v3/flat2/microsoft.testing.platform.msbuild/1.6.2/microsoft.testing.platform.msbuild.1.6.2.nupkg"
"url": "https://pkgs.dev.azure.com/artifacts-public/02d91361-94bc-4deb-ad0d-192aeb45aba2/_packaging/ed062375-12d3-41ae-84aa-f3a5cee3a2a8/nuget/v3/flat2/microsoft.testing.platform.msbuild/1.6.2/microsoft.testing.platform.msbuild.1.6.2.nupkg"
},
{
"pname": "Microsoft.TestPlatform.ObjectModel",
"version": "17.13.0",
"hash": "sha256-6S0fjfj8vA+h6dJVNwLi6oZhYDO/I/6hBZaq2VTW+Uk=",
"url": "https://pkgs.dev.azure.com/mseng/c86767d8-af79-4303-a7e6-21da0ba435e2/_packaging/a319f538-6c19-4e2e-9df3-0222939da271/nuget/v3/flat2/microsoft.testplatform.objectmodel/17.13.0/microsoft.testplatform.objectmodel.17.13.0.nupkg"
"url": "https://pkgs.dev.azure.com/artifacts-public/02d91361-94bc-4deb-ad0d-192aeb45aba2/_packaging/ed062375-12d3-41ae-84aa-f3a5cee3a2a8/nuget/v3/flat2/microsoft.testplatform.objectmodel/17.13.0/microsoft.testplatform.objectmodel.17.13.0.nupkg"
},
{
"pname": "Microsoft.TestPlatform.TestHost",
"version": "17.13.0",
"hash": "sha256-L/CJzou7dhmShUgXq3aXL3CaLTJll17Q+JY2DBdUUpo=",
"url": "https://pkgs.dev.azure.com/mseng/c86767d8-af79-4303-a7e6-21da0ba435e2/_packaging/a319f538-6c19-4e2e-9df3-0222939da271/nuget/v3/flat2/microsoft.testplatform.testhost/17.13.0/microsoft.testplatform.testhost.17.13.0.nupkg"
"url": "https://pkgs.dev.azure.com/artifacts-public/02d91361-94bc-4deb-ad0d-192aeb45aba2/_packaging/ed062375-12d3-41ae-84aa-f3a5cee3a2a8/nuget/v3/flat2/microsoft.testplatform.testhost/17.13.0/microsoft.testplatform.testhost.17.13.0.nupkg"
},
{
"pname": "Microsoft.VisualStudioEng.MicroBuild.Core",
"version": "1.0.0",
"hash": "sha256-0PcuPQ/x6TUXHP5nwRmYcDiRRxvjsqm93kV2YCX2+EQ=",
"url": "https://pkgs.dev.azure.com/mseng/c86767d8-af79-4303-a7e6-21da0ba435e2/_packaging/a319f538-6c19-4e2e-9df3-0222939da271/nuget/v3/flat2/microsoft.visualstudioeng.microbuild.core/1.0.0/microsoft.visualstudioeng.microbuild.core.1.0.0.nupkg"
"url": "https://pkgs.dev.azure.com/artifacts-public/02d91361-94bc-4deb-ad0d-192aeb45aba2/_packaging/ed062375-12d3-41ae-84aa-f3a5cee3a2a8/nuget/v3/flat2/microsoft.visualstudioeng.microbuild.core/1.0.0/microsoft.visualstudioeng.microbuild.core.1.0.0.nupkg"
},
{
"pname": "Microsoft.Win32.SystemEvents",
"version": "6.0.0",
"hash": "sha256-N9EVZbl5w1VnMywGXyaVWzT9lh84iaJ3aD48hIBk1zA=",
"url": "https://pkgs.dev.azure.com/mseng/c86767d8-af79-4303-a7e6-21da0ba435e2/_packaging/a319f538-6c19-4e2e-9df3-0222939da271/nuget/v3/flat2/microsoft.win32.systemevents/6.0.0/microsoft.win32.systemevents.6.0.0.nupkg"
"url": "https://pkgs.dev.azure.com/artifacts-public/02d91361-94bc-4deb-ad0d-192aeb45aba2/_packaging/ed062375-12d3-41ae-84aa-f3a5cee3a2a8/nuget/v3/flat2/microsoft.win32.systemevents/6.0.0/microsoft.win32.systemevents.6.0.0.nupkg"
},
{
"pname": "Moq",
"version": "4.18.4",
"hash": "sha256-JOmYlcTJdQOthRxnT0jAD6WG+NVLMmIV2BM9rNhNg3Q=",
"url": "https://pkgs.dev.azure.com/mseng/c86767d8-af79-4303-a7e6-21da0ba435e2/_packaging/a319f538-6c19-4e2e-9df3-0222939da271/nuget/v3/flat2/moq/4.18.4/moq.4.18.4.nupkg"
"url": "https://pkgs.dev.azure.com/artifacts-public/02d91361-94bc-4deb-ad0d-192aeb45aba2/_packaging/ed062375-12d3-41ae-84aa-f3a5cee3a2a8/nuget/v3/flat2/moq/4.18.4/moq.4.18.4.nupkg"
},
{
"pname": "MSTest",
"version": "3.8.2",
"hash": "sha256-k6M9buNaP/y+e4/4dsSWxsFWMmocWocDh3LW1jL97/A=",
"url": "https://pkgs.dev.azure.com/mseng/c86767d8-af79-4303-a7e6-21da0ba435e2/_packaging/a319f538-6c19-4e2e-9df3-0222939da271/nuget/v3/flat2/mstest/3.8.2/mstest.3.8.2.nupkg"
"url": "https://pkgs.dev.azure.com/artifacts-public/02d91361-94bc-4deb-ad0d-192aeb45aba2/_packaging/ed062375-12d3-41ae-84aa-f3a5cee3a2a8/nuget/v3/flat2/mstest/3.8.2/mstest.3.8.2.nupkg"
},
{
"pname": "MSTest.Analyzers",
"version": "3.8.2",
"hash": "sha256-r+JAxw77n/PQpQviXn8j1M+ccb9GVHTNuPWwffacVkg=",
"url": "https://pkgs.dev.azure.com/mseng/c86767d8-af79-4303-a7e6-21da0ba435e2/_packaging/a319f538-6c19-4e2e-9df3-0222939da271/nuget/v3/flat2/mstest.analyzers/3.8.2/mstest.analyzers.3.8.2.nupkg"
"url": "https://pkgs.dev.azure.com/artifacts-public/02d91361-94bc-4deb-ad0d-192aeb45aba2/_packaging/ed062375-12d3-41ae-84aa-f3a5cee3a2a8/nuget/v3/flat2/mstest.analyzers/3.8.2/mstest.analyzers.3.8.2.nupkg"
},
{
"pname": "MSTest.TestAdapter",
"version": "3.8.2",
"hash": "sha256-z5fZWSvyxvohB8Vl6gtb8nsAGt/9saXLZRckuzfVg/Y=",
"url": "https://pkgs.dev.azure.com/mseng/c86767d8-af79-4303-a7e6-21da0ba435e2/_packaging/a319f538-6c19-4e2e-9df3-0222939da271/nuget/v3/flat2/mstest.testadapter/3.8.2/mstest.testadapter.3.8.2.nupkg"
"url": "https://pkgs.dev.azure.com/artifacts-public/02d91361-94bc-4deb-ad0d-192aeb45aba2/_packaging/ed062375-12d3-41ae-84aa-f3a5cee3a2a8/nuget/v3/flat2/mstest.testadapter/3.8.2/mstest.testadapter.3.8.2.nupkg"
},
{
"pname": "MSTest.TestFramework",
"version": "3.8.2",
"hash": "sha256-NjQ1XU3vMRdFZSE6Ju2ASopCPZFpFZaPAQdRudqAf5c=",
"url": "https://pkgs.dev.azure.com/mseng/c86767d8-af79-4303-a7e6-21da0ba435e2/_packaging/a319f538-6c19-4e2e-9df3-0222939da271/nuget/v3/flat2/mstest.testframework/3.8.2/mstest.testframework.3.8.2.nupkg"
"url": "https://pkgs.dev.azure.com/artifacts-public/02d91361-94bc-4deb-ad0d-192aeb45aba2/_packaging/ed062375-12d3-41ae-84aa-f3a5cee3a2a8/nuget/v3/flat2/mstest.testframework/3.8.2/mstest.testframework.3.8.2.nupkg"
},
{
"pname": "NETStandard.Library",
"version": "2.0.3",
"hash": "sha256-Prh2RPebz/s8AzHb2sPHg3Jl8s31inv9k+Qxd293ybo=",
"url": "https://pkgs.dev.azure.com/mseng/c86767d8-af79-4303-a7e6-21da0ba435e2/_packaging/a319f538-6c19-4e2e-9df3-0222939da271/nuget/v3/flat2/netstandard.library/2.0.3/netstandard.library.2.0.3.nupkg"
"url": "https://pkgs.dev.azure.com/artifacts-public/02d91361-94bc-4deb-ad0d-192aeb45aba2/_packaging/ed062375-12d3-41ae-84aa-f3a5cee3a2a8/nuget/v3/flat2/netstandard.library/2.0.3/netstandard.library.2.0.3.nupkg"
},
{
"pname": "Newtonsoft.Json",
"version": "13.0.3",
"hash": "sha256-hy/BieY4qxBWVVsDqqOPaLy1QobiIapkbrESm6v2PHc=",
"url": "https://pkgs.dev.azure.com/mseng/c86767d8-af79-4303-a7e6-21da0ba435e2/_packaging/a319f538-6c19-4e2e-9df3-0222939da271/nuget/v3/flat2/newtonsoft.json/13.0.3/newtonsoft.json.13.0.3.nupkg"
"url": "https://pkgs.dev.azure.com/artifacts-public/02d91361-94bc-4deb-ad0d-192aeb45aba2/_packaging/ed062375-12d3-41ae-84aa-f3a5cee3a2a8/nuget/v3/flat2/newtonsoft.json/13.0.3/newtonsoft.json.13.0.3.nupkg"
},
{
"pname": "NuGet.Common",
"version": "6.7.1",
"hash": "sha256-tT/cPycNmd922tJgxcFaSMGb1/1DLANkcfWvecViVHE=",
"url": "https://pkgs.dev.azure.com/mseng/c86767d8-af79-4303-a7e6-21da0ba435e2/_packaging/a319f538-6c19-4e2e-9df3-0222939da271/nuget/v3/flat2/nuget.common/6.7.1/nuget.common.6.7.1.nupkg"
"url": "https://pkgs.dev.azure.com/artifacts-public/02d91361-94bc-4deb-ad0d-192aeb45aba2/_packaging/ed062375-12d3-41ae-84aa-f3a5cee3a2a8/nuget/v3/flat2/nuget.common/6.7.1/nuget.common.6.7.1.nupkg"
},
{
"pname": "NuGet.Configuration",
"version": "6.7.1",
"hash": "sha256-AC8U1AGOOjdurvRojCYYcvlRFFPvNoq6MpDYCPphJcY=",
"url": "https://pkgs.dev.azure.com/mseng/c86767d8-af79-4303-a7e6-21da0ba435e2/_packaging/a319f538-6c19-4e2e-9df3-0222939da271/nuget/v3/flat2/nuget.configuration/6.7.1/nuget.configuration.6.7.1.nupkg"
"url": "https://pkgs.dev.azure.com/artifacts-public/02d91361-94bc-4deb-ad0d-192aeb45aba2/_packaging/ed062375-12d3-41ae-84aa-f3a5cee3a2a8/nuget/v3/flat2/nuget.configuration/6.7.1/nuget.configuration.6.7.1.nupkg"
},
{
"pname": "NuGet.Frameworks",
"version": "6.7.1",
"hash": "sha256-fUz6jD/5Z233gWhk5AUGmi4OLvaF8G/CYfzHKWJIluc=",
"url": "https://pkgs.dev.azure.com/mseng/c86767d8-af79-4303-a7e6-21da0ba435e2/_packaging/a319f538-6c19-4e2e-9df3-0222939da271/nuget/v3/flat2/nuget.frameworks/6.7.1/nuget.frameworks.6.7.1.nupkg"
"url": "https://pkgs.dev.azure.com/artifacts-public/02d91361-94bc-4deb-ad0d-192aeb45aba2/_packaging/ed062375-12d3-41ae-84aa-f3a5cee3a2a8/nuget/v3/flat2/nuget.frameworks/6.7.1/nuget.frameworks.6.7.1.nupkg"
},
{
"pname": "NuGet.Packaging",
"version": "6.7.1",
"hash": "sha256-Dj7ueW+wDq75H/ArDZywEADTY8ubA7k2Bdi8YxPkluo=",
"url": "https://pkgs.dev.azure.com/mseng/c86767d8-af79-4303-a7e6-21da0ba435e2/_packaging/a319f538-6c19-4e2e-9df3-0222939da271/nuget/v3/flat2/nuget.packaging/6.7.1/nuget.packaging.6.7.1.nupkg"
"url": "https://pkgs.dev.azure.com/artifacts-public/02d91361-94bc-4deb-ad0d-192aeb45aba2/_packaging/ed062375-12d3-41ae-84aa-f3a5cee3a2a8/nuget/v3/flat2/nuget.packaging/6.7.1/nuget.packaging.6.7.1.nupkg"
},
{
"pname": "NuGet.Protocol",
"version": "6.7.1",
"hash": "sha256-XA9xoymLSlXbqHv+aaheg2KabyvWJskk+nlTEu6btD8=",
"url": "https://pkgs.dev.azure.com/mseng/c86767d8-af79-4303-a7e6-21da0ba435e2/_packaging/a319f538-6c19-4e2e-9df3-0222939da271/nuget/v3/flat2/nuget.protocol/6.7.1/nuget.protocol.6.7.1.nupkg"
"url": "https://pkgs.dev.azure.com/artifacts-public/02d91361-94bc-4deb-ad0d-192aeb45aba2/_packaging/ed062375-12d3-41ae-84aa-f3a5cee3a2a8/nuget/v3/flat2/nuget.protocol/6.7.1/nuget.protocol.6.7.1.nupkg"
},
{
"pname": "NuGet.Versioning",
"version": "6.7.1",
"hash": "sha256-tpGqYtuaH8pdC2GYGAec+7db3DfsAxq1o5xzRx33uaQ=",
"url": "https://pkgs.dev.azure.com/mseng/c86767d8-af79-4303-a7e6-21da0ba435e2/_packaging/a319f538-6c19-4e2e-9df3-0222939da271/nuget/v3/flat2/nuget.versioning/6.7.1/nuget.versioning.6.7.1.nupkg"
"url": "https://pkgs.dev.azure.com/artifacts-public/02d91361-94bc-4deb-ad0d-192aeb45aba2/_packaging/ed062375-12d3-41ae-84aa-f3a5cee3a2a8/nuget/v3/flat2/nuget.versioning/6.7.1/nuget.versioning.6.7.1.nupkg"
},
{
"pname": "PowerArgs",
"version": "3.6.0",
"hash": "sha256-EOh5M64sOT8lzlIJLmgoIE6grq7FMjh0TU5d0iUlq+c=",
"url": "https://pkgs.dev.azure.com/mseng/c86767d8-af79-4303-a7e6-21da0ba435e2/_packaging/a319f538-6c19-4e2e-9df3-0222939da271/nuget/v3/flat2/powerargs/3.6.0/powerargs.3.6.0.nupkg"
"url": "https://pkgs.dev.azure.com/artifacts-public/02d91361-94bc-4deb-ad0d-192aeb45aba2/_packaging/ed062375-12d3-41ae-84aa-f3a5cee3a2a8/nuget/v3/flat2/powerargs/3.6.0/powerargs.3.6.0.nupkg"
},
{
"pname": "ReferenceTrimmer",
"version": "3.3.11",
"hash": "sha256-r+7dehH64aAzicFT/BkLMZcuSEtaS3g/nFmjvv0OJXc=",
"url": "https://pkgs.dev.azure.com/mseng/c86767d8-af79-4303-a7e6-21da0ba435e2/_packaging/a319f538-6c19-4e2e-9df3-0222939da271/nuget/v3/flat2/referencetrimmer/3.3.11/referencetrimmer.3.3.11.nupkg"
"url": "https://pkgs.dev.azure.com/artifacts-public/02d91361-94bc-4deb-ad0d-192aeb45aba2/_packaging/ed062375-12d3-41ae-84aa-f3a5cee3a2a8/nuget/v3/flat2/referencetrimmer/3.3.11/referencetrimmer.3.3.11.nupkg"
},
{
"pname": "System.Buffers",
"version": "4.4.0",
"hash": "sha256-KTxAhYawFG2V5VX1jw3pzx3IrQXRgn1TsvgjPgxAbqA=",
"url": "https://pkgs.dev.azure.com/mseng/c86767d8-af79-4303-a7e6-21da0ba435e2/_packaging/a319f538-6c19-4e2e-9df3-0222939da271/nuget/v3/flat2/system.buffers/4.4.0/system.buffers.4.4.0.nupkg"
"url": "https://pkgs.dev.azure.com/artifacts-public/02d91361-94bc-4deb-ad0d-192aeb45aba2/_packaging/ed062375-12d3-41ae-84aa-f3a5cee3a2a8/nuget/v3/flat2/system.buffers/4.4.0/system.buffers.4.4.0.nupkg"
},
{
"pname": "System.Buffers",
"version": "4.5.1",
"hash": "sha256-wws90sfi9M7kuCPWkv1CEYMJtCqx9QB/kj0ymlsNaxI=",
"url": "https://pkgs.dev.azure.com/mseng/c86767d8-af79-4303-a7e6-21da0ba435e2/_packaging/a319f538-6c19-4e2e-9df3-0222939da271/nuget/v3/flat2/system.buffers/4.5.1/system.buffers.4.5.1.nupkg"
"url": "https://pkgs.dev.azure.com/artifacts-public/02d91361-94bc-4deb-ad0d-192aeb45aba2/_packaging/ed062375-12d3-41ae-84aa-f3a5cee3a2a8/nuget/v3/flat2/system.buffers/4.5.1/system.buffers.4.5.1.nupkg"
},
{
"pname": "System.Collections.Immutable",
"version": "8.0.0",
"hash": "sha256-F7OVjKNwpqbUh8lTidbqJWYi476nsq9n+6k0+QVRo3w=",
"url": "https://pkgs.dev.azure.com/mseng/c86767d8-af79-4303-a7e6-21da0ba435e2/_packaging/a319f538-6c19-4e2e-9df3-0222939da271/nuget/v3/flat2/system.collections.immutable/8.0.0/system.collections.immutable.8.0.0.nupkg"
"url": "https://pkgs.dev.azure.com/artifacts-public/02d91361-94bc-4deb-ad0d-192aeb45aba2/_packaging/ed062375-12d3-41ae-84aa-f3a5cee3a2a8/nuget/v3/flat2/system.collections.immutable/8.0.0/system.collections.immutable.8.0.0.nupkg"
},
{
"pname": "System.Configuration.ConfigurationManager",
"version": "6.0.0",
"hash": "sha256-fPV668Cfi+8pNWrvGAarF4fewdPVEDwlJWvJk0y+Cms=",
"url": "https://pkgs.dev.azure.com/mseng/c86767d8-af79-4303-a7e6-21da0ba435e2/_packaging/a319f538-6c19-4e2e-9df3-0222939da271/nuget/v3/flat2/system.configuration.configurationmanager/6.0.0/system.configuration.configurationmanager.6.0.0.nupkg"
"url": "https://pkgs.dev.azure.com/artifacts-public/02d91361-94bc-4deb-ad0d-192aeb45aba2/_packaging/ed062375-12d3-41ae-84aa-f3a5cee3a2a8/nuget/v3/flat2/system.configuration.configurationmanager/6.0.0/system.configuration.configurationmanager.6.0.0.nupkg"
},
{
"pname": "System.Diagnostics.DiagnosticSource",
"version": "5.0.0",
"hash": "sha256-6mW3N6FvcdNH/pB58pl+pFSCGWgyaP4hfVtC/SMWDV4=",
"url": "https://pkgs.dev.azure.com/mseng/c86767d8-af79-4303-a7e6-21da0ba435e2/_packaging/a319f538-6c19-4e2e-9df3-0222939da271/nuget/v3/flat2/system.diagnostics.diagnosticsource/5.0.0/system.diagnostics.diagnosticsource.5.0.0.nupkg"
"url": "https://pkgs.dev.azure.com/artifacts-public/02d91361-94bc-4deb-ad0d-192aeb45aba2/_packaging/ed062375-12d3-41ae-84aa-f3a5cee3a2a8/nuget/v3/flat2/system.diagnostics.diagnosticsource/5.0.0/system.diagnostics.diagnosticsource.5.0.0.nupkg"
},
{
"pname": "System.Diagnostics.DiagnosticSource",
"version": "6.0.0",
"hash": "sha256-RY9uWSPdK2fgSwlj1OHBGBVo3ZvGQgBJNzAsS5OGMWc=",
"url": "https://pkgs.dev.azure.com/mseng/c86767d8-af79-4303-a7e6-21da0ba435e2/_packaging/a319f538-6c19-4e2e-9df3-0222939da271/nuget/v3/flat2/system.diagnostics.diagnosticsource/6.0.0/system.diagnostics.diagnosticsource.6.0.0.nupkg"
"url": "https://pkgs.dev.azure.com/artifacts-public/02d91361-94bc-4deb-ad0d-192aeb45aba2/_packaging/ed062375-12d3-41ae-84aa-f3a5cee3a2a8/nuget/v3/flat2/system.diagnostics.diagnosticsource/6.0.0/system.diagnostics.diagnosticsource.6.0.0.nupkg"
},
{
"pname": "System.Diagnostics.DiagnosticSource",
"version": "6.0.1",
"hash": "sha256-Xi8wrUjVlioz//TPQjFHqcV/QGhTqnTfUcltsNlcCJ4=",
"url": "https://pkgs.dev.azure.com/mseng/c86767d8-af79-4303-a7e6-21da0ba435e2/_packaging/a319f538-6c19-4e2e-9df3-0222939da271/nuget/v3/flat2/system.diagnostics.diagnosticsource/6.0.1/system.diagnostics.diagnosticsource.6.0.1.nupkg"
"url": "https://pkgs.dev.azure.com/artifacts-public/02d91361-94bc-4deb-ad0d-192aeb45aba2/_packaging/ed062375-12d3-41ae-84aa-f3a5cee3a2a8/nuget/v3/flat2/system.diagnostics.diagnosticsource/6.0.1/system.diagnostics.diagnosticsource.6.0.1.nupkg"
},
{
"pname": "System.Diagnostics.EventLog",
"version": "6.0.0",
"hash": "sha256-zUXIQtAFKbiUMKCrXzO4mOTD5EUphZzghBYKXprowSM=",
"url": "https://pkgs.dev.azure.com/mseng/c86767d8-af79-4303-a7e6-21da0ba435e2/_packaging/a319f538-6c19-4e2e-9df3-0222939da271/nuget/v3/flat2/system.diagnostics.eventlog/6.0.0/system.diagnostics.eventlog.6.0.0.nupkg"
"url": "https://pkgs.dev.azure.com/artifacts-public/02d91361-94bc-4deb-ad0d-192aeb45aba2/_packaging/ed062375-12d3-41ae-84aa-f3a5cee3a2a8/nuget/v3/flat2/system.diagnostics.eventlog/6.0.0/system.diagnostics.eventlog.6.0.0.nupkg"
},
{
"pname": "System.Drawing.Common",
"version": "6.0.0",
"hash": "sha256-/9EaAbEeOjELRSMZaImS1O8FmUe8j4WuFUw1VOrPyAo=",
"url": "https://pkgs.dev.azure.com/mseng/c86767d8-af79-4303-a7e6-21da0ba435e2/_packaging/a319f538-6c19-4e2e-9df3-0222939da271/nuget/v3/flat2/system.drawing.common/6.0.0/system.drawing.common.6.0.0.nupkg"
"url": "https://pkgs.dev.azure.com/artifacts-public/02d91361-94bc-4deb-ad0d-192aeb45aba2/_packaging/ed062375-12d3-41ae-84aa-f3a5cee3a2a8/nuget/v3/flat2/system.drawing.common/6.0.0/system.drawing.common.6.0.0.nupkg"
},
{
"pname": "System.Formats.Asn1",
"version": "6.0.1",
"hash": "sha256-gfGxcaWpVO92BJrl24pXi09KSgW2rSy3HGv0+V8hGgo=",
"url": "https://pkgs.dev.azure.com/mseng/c86767d8-af79-4303-a7e6-21da0ba435e2/_packaging/a319f538-6c19-4e2e-9df3-0222939da271/nuget/v3/flat2/system.formats.asn1/6.0.1/system.formats.asn1.6.0.1.nupkg"
"url": "https://pkgs.dev.azure.com/artifacts-public/02d91361-94bc-4deb-ad0d-192aeb45aba2/_packaging/ed062375-12d3-41ae-84aa-f3a5cee3a2a8/nuget/v3/flat2/system.formats.asn1/6.0.1/system.formats.asn1.6.0.1.nupkg"
},
{
"pname": "System.IO.FileSystem.AccessControl",
"version": "5.0.0",
"hash": "sha256-c9MlDKJfj63YRvl7brRBNs59olrmbL+G1A6oTS8ytEc=",
"url": "https://pkgs.dev.azure.com/mseng/c86767d8-af79-4303-a7e6-21da0ba435e2/_packaging/a319f538-6c19-4e2e-9df3-0222939da271/nuget/v3/flat2/system.io.filesystem.accesscontrol/5.0.0/system.io.filesystem.accesscontrol.5.0.0.nupkg"
"url": "https://pkgs.dev.azure.com/artifacts-public/02d91361-94bc-4deb-ad0d-192aeb45aba2/_packaging/ed062375-12d3-41ae-84aa-f3a5cee3a2a8/nuget/v3/flat2/system.io.filesystem.accesscontrol/5.0.0/system.io.filesystem.accesscontrol.5.0.0.nupkg"
},
{
"pname": "System.Memory",
"version": "4.5.0",
"hash": "sha256-YOz1pCR4RpP1ywYoJsgXnVlzsWtC2uYKQJTg0NnFXtE=",
"url": "https://pkgs.dev.azure.com/mseng/c86767d8-af79-4303-a7e6-21da0ba435e2/_packaging/a319f538-6c19-4e2e-9df3-0222939da271/nuget/v3/flat2/system.memory/4.5.0/system.memory.4.5.0.nupkg"
"url": "https://pkgs.dev.azure.com/artifacts-public/02d91361-94bc-4deb-ad0d-192aeb45aba2/_packaging/ed062375-12d3-41ae-84aa-f3a5cee3a2a8/nuget/v3/flat2/system.memory/4.5.0/system.memory.4.5.0.nupkg"
},
{
"pname": "System.Memory",
"version": "4.5.4",
"hash": "sha256-3sCEfzO4gj5CYGctl9ZXQRRhwAraMQfse7yzKoRe65E=",
"url": "https://pkgs.dev.azure.com/mseng/c86767d8-af79-4303-a7e6-21da0ba435e2/_packaging/a319f538-6c19-4e2e-9df3-0222939da271/nuget/v3/flat2/system.memory/4.5.4/system.memory.4.5.4.nupkg"
"url": "https://pkgs.dev.azure.com/artifacts-public/02d91361-94bc-4deb-ad0d-192aeb45aba2/_packaging/ed062375-12d3-41ae-84aa-f3a5cee3a2a8/nuget/v3/flat2/system.memory/4.5.4/system.memory.4.5.4.nupkg"
},
{
"pname": "System.Numerics.Vectors",
"version": "4.4.0",
"hash": "sha256-auXQK2flL/JpnB/rEcAcUm4vYMCYMEMiWOCAlIaqu2U=",
"url": "https://pkgs.dev.azure.com/mseng/c86767d8-af79-4303-a7e6-21da0ba435e2/_packaging/a319f538-6c19-4e2e-9df3-0222939da271/nuget/v3/flat2/system.numerics.vectors/4.4.0/system.numerics.vectors.4.4.0.nupkg"
"url": "https://pkgs.dev.azure.com/artifacts-public/02d91361-94bc-4deb-ad0d-192aeb45aba2/_packaging/ed062375-12d3-41ae-84aa-f3a5cee3a2a8/nuget/v3/flat2/system.numerics.vectors/4.4.0/system.numerics.vectors.4.4.0.nupkg"
},
{
"pname": "System.Reflection.Metadata",
"version": "1.6.0",
"hash": "sha256-JJfgaPav7UfEh4yRAQdGhLZF1brr0tUWPl6qmfNWq/E=",
"url": "https://pkgs.dev.azure.com/mseng/c86767d8-af79-4303-a7e6-21da0ba435e2/_packaging/a319f538-6c19-4e2e-9df3-0222939da271/nuget/v3/flat2/system.reflection.metadata/1.6.0/system.reflection.metadata.1.6.0.nupkg"
"url": "https://pkgs.dev.azure.com/artifacts-public/02d91361-94bc-4deb-ad0d-192aeb45aba2/_packaging/ed062375-12d3-41ae-84aa-f3a5cee3a2a8/nuget/v3/flat2/system.reflection.metadata/1.6.0/system.reflection.metadata.1.6.0.nupkg"
},
{
"pname": "System.Reflection.Metadata",
"version": "8.0.0",
"hash": "sha256-dQGC30JauIDWNWXMrSNOJncVa1umR1sijazYwUDdSIE=",
"url": "https://pkgs.dev.azure.com/mseng/c86767d8-af79-4303-a7e6-21da0ba435e2/_packaging/a319f538-6c19-4e2e-9df3-0222939da271/nuget/v3/flat2/system.reflection.metadata/8.0.0/system.reflection.metadata.8.0.0.nupkg"
"url": "https://pkgs.dev.azure.com/artifacts-public/02d91361-94bc-4deb-ad0d-192aeb45aba2/_packaging/ed062375-12d3-41ae-84aa-f3a5cee3a2a8/nuget/v3/flat2/system.reflection.metadata/8.0.0/system.reflection.metadata.8.0.0.nupkg"
},
{
"pname": "System.Runtime.CompilerServices.Unsafe",
"version": "4.5.0",
"hash": "sha256-g9jIdQtXSAhY+ezQtYNgHEUoQR3HzznHs3JMzD9bip4=",
"url": "https://pkgs.dev.azure.com/mseng/c86767d8-af79-4303-a7e6-21da0ba435e2/_packaging/a319f538-6c19-4e2e-9df3-0222939da271/nuget/v3/flat2/system.runtime.compilerservices.unsafe/4.5.0/system.runtime.compilerservices.unsafe.4.5.0.nupkg"
"url": "https://pkgs.dev.azure.com/artifacts-public/02d91361-94bc-4deb-ad0d-192aeb45aba2/_packaging/ed062375-12d3-41ae-84aa-f3a5cee3a2a8/nuget/v3/flat2/system.runtime.compilerservices.unsafe/4.5.0/system.runtime.compilerservices.unsafe.4.5.0.nupkg"
},
{
"pname": "System.Runtime.CompilerServices.Unsafe",
"version": "4.5.3",
"hash": "sha256-lnZMUqRO4RYRUeSO8HSJ9yBHqFHLVbmenwHWkIU20ak=",
"url": "https://pkgs.dev.azure.com/mseng/c86767d8-af79-4303-a7e6-21da0ba435e2/_packaging/a319f538-6c19-4e2e-9df3-0222939da271/nuget/v3/flat2/system.runtime.compilerservices.unsafe/4.5.3/system.runtime.compilerservices.unsafe.4.5.3.nupkg"
"url": "https://pkgs.dev.azure.com/artifacts-public/02d91361-94bc-4deb-ad0d-192aeb45aba2/_packaging/ed062375-12d3-41ae-84aa-f3a5cee3a2a8/nuget/v3/flat2/system.runtime.compilerservices.unsafe/4.5.3/system.runtime.compilerservices.unsafe.4.5.3.nupkg"
},
{
"pname": "System.Runtime.CompilerServices.Unsafe",
"version": "6.0.0",
"hash": "sha256-bEG1PnDp7uKYz/OgLOWs3RWwQSVYm+AnPwVmAmcgp2I=",
"url": "https://pkgs.dev.azure.com/mseng/c86767d8-af79-4303-a7e6-21da0ba435e2/_packaging/a319f538-6c19-4e2e-9df3-0222939da271/nuget/v3/flat2/system.runtime.compilerservices.unsafe/6.0.0/system.runtime.compilerservices.unsafe.6.0.0.nupkg"
"url": "https://pkgs.dev.azure.com/artifacts-public/02d91361-94bc-4deb-ad0d-192aeb45aba2/_packaging/ed062375-12d3-41ae-84aa-f3a5cee3a2a8/nuget/v3/flat2/system.runtime.compilerservices.unsafe/6.0.0/system.runtime.compilerservices.unsafe.6.0.0.nupkg"
},
{
"pname": "System.Security.AccessControl",
"version": "5.0.0",
"hash": "sha256-ueSG+Yn82evxyGBnE49N4D+ngODDXgornlBtQ3Omw54=",
"url": "https://pkgs.dev.azure.com/mseng/c86767d8-af79-4303-a7e6-21da0ba435e2/_packaging/a319f538-6c19-4e2e-9df3-0222939da271/nuget/v3/flat2/system.security.accesscontrol/5.0.0/system.security.accesscontrol.5.0.0.nupkg"
"url": "https://pkgs.dev.azure.com/artifacts-public/02d91361-94bc-4deb-ad0d-192aeb45aba2/_packaging/ed062375-12d3-41ae-84aa-f3a5cee3a2a8/nuget/v3/flat2/system.security.accesscontrol/5.0.0/system.security.accesscontrol.5.0.0.nupkg"
},
{
"pname": "System.Security.AccessControl",
"version": "6.0.0",
"hash": "sha256-qOyWEBbNr3EjyS+etFG8/zMbuPjA+O+di717JP9Cxyg=",
"url": "https://pkgs.dev.azure.com/mseng/c86767d8-af79-4303-a7e6-21da0ba435e2/_packaging/a319f538-6c19-4e2e-9df3-0222939da271/nuget/v3/flat2/system.security.accesscontrol/6.0.0/system.security.accesscontrol.6.0.0.nupkg"
"url": "https://pkgs.dev.azure.com/artifacts-public/02d91361-94bc-4deb-ad0d-192aeb45aba2/_packaging/ed062375-12d3-41ae-84aa-f3a5cee3a2a8/nuget/v3/flat2/system.security.accesscontrol/6.0.0/system.security.accesscontrol.6.0.0.nupkg"
},
{
"pname": "System.Security.Cryptography.Pkcs",
"version": "6.0.4",
"hash": "sha256-2e0aRybote+OR66bHaNiYpF//4fCiaO3zbR2e9GABUI=",
"url": "https://pkgs.dev.azure.com/mseng/c86767d8-af79-4303-a7e6-21da0ba435e2/_packaging/a319f538-6c19-4e2e-9df3-0222939da271/nuget/v3/flat2/system.security.cryptography.pkcs/6.0.4/system.security.cryptography.pkcs.6.0.4.nupkg"
"url": "https://pkgs.dev.azure.com/artifacts-public/02d91361-94bc-4deb-ad0d-192aeb45aba2/_packaging/ed062375-12d3-41ae-84aa-f3a5cee3a2a8/nuget/v3/flat2/system.security.cryptography.pkcs/6.0.4/system.security.cryptography.pkcs.6.0.4.nupkg"
},
{
"pname": "System.Security.Cryptography.ProtectedData",
"version": "4.4.0",
"hash": "sha256-Ri53QmFX8I8UH0x4PikQ1ZA07ZSnBUXStd5rBfGWFOE=",
"url": "https://pkgs.dev.azure.com/mseng/c86767d8-af79-4303-a7e6-21da0ba435e2/_packaging/a319f538-6c19-4e2e-9df3-0222939da271/nuget/v3/flat2/system.security.cryptography.protecteddata/4.4.0/system.security.cryptography.protecteddata.4.4.0.nupkg"
"url": "https://pkgs.dev.azure.com/artifacts-public/02d91361-94bc-4deb-ad0d-192aeb45aba2/_packaging/ed062375-12d3-41ae-84aa-f3a5cee3a2a8/nuget/v3/flat2/system.security.cryptography.protecteddata/4.4.0/system.security.cryptography.protecteddata.4.4.0.nupkg"
},
{
"pname": "System.Security.Cryptography.ProtectedData",
"version": "4.5.0",
"hash": "sha256-Z+X1Z2lErLL7Ynt2jFszku6/IgrngO3V1bSfZTBiFIc=",
"url": "https://pkgs.dev.azure.com/mseng/c86767d8-af79-4303-a7e6-21da0ba435e2/_packaging/a319f538-6c19-4e2e-9df3-0222939da271/nuget/v3/flat2/system.security.cryptography.protecteddata/4.5.0/system.security.cryptography.protecteddata.4.5.0.nupkg"
"url": "https://pkgs.dev.azure.com/artifacts-public/02d91361-94bc-4deb-ad0d-192aeb45aba2/_packaging/ed062375-12d3-41ae-84aa-f3a5cee3a2a8/nuget/v3/flat2/system.security.cryptography.protecteddata/4.5.0/system.security.cryptography.protecteddata.4.5.0.nupkg"
},
{
"pname": "System.Security.Cryptography.ProtectedData",
"version": "6.0.0",
"hash": "sha256-Wi9I9NbZlpQDXgS7Kl06RIFxY/9674S7hKiYw5EabRY=",
"url": "https://pkgs.dev.azure.com/mseng/c86767d8-af79-4303-a7e6-21da0ba435e2/_packaging/a319f538-6c19-4e2e-9df3-0222939da271/nuget/v3/flat2/system.security.cryptography.protecteddata/6.0.0/system.security.cryptography.protecteddata.6.0.0.nupkg"
"url": "https://pkgs.dev.azure.com/artifacts-public/02d91361-94bc-4deb-ad0d-192aeb45aba2/_packaging/ed062375-12d3-41ae-84aa-f3a5cee3a2a8/nuget/v3/flat2/system.security.cryptography.protecteddata/6.0.0/system.security.cryptography.protecteddata.6.0.0.nupkg"
},
{
"pname": "System.Security.Permissions",
"version": "6.0.0",
"hash": "sha256-/MMvtFWGN/vOQfjXdOhet1gsnMgh6lh5DCHimVsnVEs=",
"url": "https://pkgs.dev.azure.com/mseng/c86767d8-af79-4303-a7e6-21da0ba435e2/_packaging/a319f538-6c19-4e2e-9df3-0222939da271/nuget/v3/flat2/system.security.permissions/6.0.0/system.security.permissions.6.0.0.nupkg"
"url": "https://pkgs.dev.azure.com/artifacts-public/02d91361-94bc-4deb-ad0d-192aeb45aba2/_packaging/ed062375-12d3-41ae-84aa-f3a5cee3a2a8/nuget/v3/flat2/system.security.permissions/6.0.0/system.security.permissions.6.0.0.nupkg"
},
{
"pname": "System.Security.Principal.Windows",
"version": "5.0.0",
"hash": "sha256-CBOQwl9veFkrKK2oU8JFFEiKIh/p+aJO+q9Tc2Q/89Y=",
"url": "https://pkgs.dev.azure.com/mseng/c86767d8-af79-4303-a7e6-21da0ba435e2/_packaging/a319f538-6c19-4e2e-9df3-0222939da271/nuget/v3/flat2/system.security.principal.windows/5.0.0/system.security.principal.windows.5.0.0.nupkg"
"url": "https://pkgs.dev.azure.com/artifacts-public/02d91361-94bc-4deb-ad0d-192aeb45aba2/_packaging/ed062375-12d3-41ae-84aa-f3a5cee3a2a8/nuget/v3/flat2/system.security.principal.windows/5.0.0/system.security.principal.windows.5.0.0.nupkg"
},
{
"pname": "System.Text.Encodings.Web",
"version": "6.0.0",
"hash": "sha256-UemDHGFoQIG7ObQwRluhVf6AgtQikfHEoPLC6gbFyRo=",
"url": "https://pkgs.dev.azure.com/mseng/c86767d8-af79-4303-a7e6-21da0ba435e2/_packaging/a319f538-6c19-4e2e-9df3-0222939da271/nuget/v3/flat2/system.text.encodings.web/6.0.0/system.text.encodings.web.6.0.0.nupkg"
"url": "https://pkgs.dev.azure.com/artifacts-public/02d91361-94bc-4deb-ad0d-192aeb45aba2/_packaging/ed062375-12d3-41ae-84aa-f3a5cee3a2a8/nuget/v3/flat2/system.text.encodings.web/6.0.0/system.text.encodings.web.6.0.0.nupkg"
},
{
"pname": "System.Text.Json",
"version": "6.0.10",
"hash": "sha256-UijYh0dxFjFinMPSTJob96oaRkNm+Wsa+7Ffg6mRnsc=",
"url": "https://pkgs.dev.azure.com/mseng/c86767d8-af79-4303-a7e6-21da0ba435e2/_packaging/a319f538-6c19-4e2e-9df3-0222939da271/nuget/v3/flat2/system.text.json/6.0.10/system.text.json.6.0.10.nupkg"
"url": "https://pkgs.dev.azure.com/artifacts-public/02d91361-94bc-4deb-ad0d-192aeb45aba2/_packaging/ed062375-12d3-41ae-84aa-f3a5cee3a2a8/nuget/v3/flat2/system.text.json/6.0.10/system.text.json.6.0.10.nupkg"
},
{
"pname": "System.Windows.Extensions",
"version": "6.0.0",
"hash": "sha256-N+qg1E6FDJ9A9L50wmVt3xPQV8ZxlG1xeXgFuxO+yfM=",
"url": "https://pkgs.dev.azure.com/mseng/c86767d8-af79-4303-a7e6-21da0ba435e2/_packaging/a319f538-6c19-4e2e-9df3-0222939da271/nuget/v3/flat2/system.windows.extensions/6.0.0/system.windows.extensions.6.0.0.nupkg"
"url": "https://pkgs.dev.azure.com/artifacts-public/02d91361-94bc-4deb-ad0d-192aeb45aba2/_packaging/ed062375-12d3-41ae-84aa-f3a5cee3a2a8/nuget/v3/flat2/system.windows.extensions/6.0.0/system.windows.extensions.6.0.0.nupkg"
}
]
@@ -8,12 +8,12 @@
buildDotnetModule rec {
dotnet-sdk = dotnetCorePackages.sdk_8_0;
dotnet-runtime = dotnetCorePackages.runtime_8_0;
version = "2.0.0";
version = "2.0.1";
src = fetchFromGitHub {
owner = "microsoft";
repo = "artifacts-credprovider";
rev = "v${version}";
sha256 = "sha256-MYoeK+AYNCu/xNt6zwN8AE0UtotkAVAJeysGnywI8iI=";
sha256 = "sha256-rllLLSSebnnmsBtj+oj5FK6qyh4qPf0Zn7fKCnhrHpQ=";
};
pname = "azure-artifacts-credprovider";
projectFile = "CredentialProvider.Microsoft/CredentialProvider.Microsoft.csproj";
+2 -2
View File
@@ -7,13 +7,13 @@
buildGoModule (finalAttrs: {
pname = "baidupcs-go";
version = "4.0.0";
version = "4.0.1";
src = fetchFromGitHub {
owner = "qjfoidnh";
repo = "BaiduPCS-Go";
rev = "v${finalAttrs.version}";
hash = "sha256-synfJtYZmIiK2SoTG0rt+qZ0ixXIXDXnrNL2s5eDtQY=";
hash = "sha256-AvwdAOjuQxdmhg+IJxQ9e9iMXqveLjoF/W7ntZZmES4=";
};
vendorHash = "sha256-oOZeBCHpAasi9K77xA+8HxZErGWKwb4OaWzWhHagtQE=";
+3 -3
View File
@@ -16,18 +16,18 @@
stdenvNoCC.mkDerivation (finalAttrs: {
pname = "blade-formatter";
version = "1.44.2";
version = "1.44.4";
src = fetchFromGitHub {
owner = "shufo";
repo = "blade-formatter";
rev = "v${finalAttrs.version}";
hash = "sha256-FrP+D7SYUPSn82TIRGh9mo/ZpbYxmiTOKagbl/9D7Hk=";
hash = "sha256-/HuYfAf0JwDzWKpc6ymsfl6NjfwnnzduVX/LGwuE1uo=";
};
yarnOfflineCache = fetchYarnDeps {
yarnLock = finalAttrs.src + "/yarn.lock";
hash = "sha256-XUd1p9AQXVUtADERNcHY7pHkMCr2g7+N/Dy7z4hL0g4=";
hash = "sha256-gVAJO74lSwBaWS19/GeAPWUfRJIjeMA6Gqzk46VA8hU=";
};
nativeBuildInputs = [
+2 -2
View File
@@ -35,14 +35,14 @@ let
in
python3.pkgs.buildPythonApplication (finalAttrs: {
pname = "checkov";
version = "3.2.510";
version = "3.2.511";
pyproject = true;
src = fetchFromGitHub {
owner = "bridgecrewio";
repo = "checkov";
tag = finalAttrs.version;
hash = "sha256-P64vAxt3+XJ8bUB5/tiO+ABagAQXHf8v4AVnFSNz7gM=";
hash = "sha256-biTISn9XhwL1RhlztmydBXwyYruNhc0GoZ1PyIg0IUg=";
};
pythonRelaxDeps = [
@@ -7,16 +7,16 @@
php.buildComposerProject2 (finalAttrs: {
pname = "composer-require-checker";
version = "4.22.0";
version = "4.24.0";
# Upstream no longer provides the composer.lock in their release artifact
src = fetchgit {
url = "https://github.com/maglnet/ComposerRequireChecker";
tag = finalAttrs.version;
hash = "sha256-L/jhVJxZOa3oIahVI85VoueFHUIuzKsQGum4127Psbg=";
hash = "sha256-4oTS2WqaKULyZWLUo+NjhktTGaPq1CFwrfpqPavoyEo=";
};
vendorHash = "sha256-aAXFEtlQ89k7GjSQOPkN5kRg0GbAO46MACSzDL9LK34=";
vendorHash = "sha256-O28yytP2W93GjLeqCkxZWt3h/fjJTcC9aVaJ9dT57C0=";
doInstallCheck = true;
nativeInstallCheckInputs = [ versionCheckHook ];
+2 -2
View File
@@ -6,13 +6,13 @@
buildGoModule (finalAttrs: {
pname = "do-agent";
version = "3.18.8";
version = "3.18.10";
src = fetchFromGitHub {
owner = "digitalocean";
repo = "do-agent";
rev = finalAttrs.version;
sha256 = "sha256-uOZTiP+2r5wTPuYXcPc3bShfTIlQMkcfwiuBqUeLxPA=";
sha256 = "sha256-2EL+dmI97d4cjb0ZVnXbmHp0m2dGcUu3xFtOXMruUE0=";
};
ldflags = [
+2 -2
View File
@@ -65,7 +65,7 @@ stdenv.mkDerivation rec {
cp -v duckmarines.love $out/share/games/lovegames/duckmarines.love
makeWrapper ${love}/bin/love $out/bin/duckmarines --add-flags $out/share/games/lovegames/duckmarines.love
makeWrapper ${lib.getExe love} $out/bin/duckmarines --add-flags $out/share/games/lovegames/duckmarines.love
chmod +x $out/bin/duckmarines
mkdir -p $out/share/applications
@@ -74,7 +74,7 @@ stdenv.mkDerivation rec {
meta = {
description = "Duck-themed action puzzle video game";
platforms = lib.platforms.linux;
platforms = love.meta.platforms;
hydraPlatforms = [ ];
license = with lib.licenses; [
# code
+2 -2
View File
@@ -12,11 +12,11 @@
stdenv.mkDerivation (finalAttrs: {
pname = "eigenwallet";
version = "3.7.0";
version = "4.1.0";
src = fetchurl {
url = "https://github.com/eigenwallet/core/releases/download/${finalAttrs.version}/eigenwallet_${finalAttrs.version}_amd64.deb";
hash = "sha256-0iLO9D2Xvgn2bkTbl6c/XGBRJm3t4AuoYRlCZaxHneo=";
hash = "sha256-zUVsw4tEzM1xIKzwn/moaRKpwqFAvcl1jHb8EpfNLuQ=";
};
nativeBuildInputs = [
+4 -7
View File
@@ -7,16 +7,16 @@
}:
buildGoModule rec {
pname = "git-pkgs";
version = "0.11.0";
version = "0.15.0";
src = fetchFromGitHub {
owner = "git-pkgs";
repo = "git-pkgs";
tag = "v${version}";
hash = "sha256-XjW3qwybTmzW2CNgu1Edgs5ZZ9xl3+uS4sT8VWD3jyQ=";
hash = "sha256-ePkLzUlHgFTJjzcZ5SP1LNcSCnaUhTO2nxDpt/jjvBc=";
};
vendorHash = "sha256-/LJwq17f7SAjSV2ZcLrdaKZYf9RVJ9wtYqEsW0ubT1Q=";
vendorHash = "sha256-3753+h7NBpawkk0+UL+chIvS7vfklDU+T8uKjHsD6Yc=";
subPackages = [ "." ];
@@ -24,13 +24,10 @@ buildGoModule rec {
"-X github.com/git-pkgs/git-pkgs/cmd.version=${version}"
];
# Tries to access the internet.
doCheck = false;
nativeBuildInputs = [ installShellFiles ];
postBuild = ''
go run scripts/generate-man.go
go run scripts/generate-man/main.go
installManPage man/*.1
'';
+3 -3
View File
@@ -9,16 +9,16 @@
rustPlatform.buildRustPackage (finalAttrs: {
pname = "git-workspace";
version = "1.10.0";
version = "1.10.1";
src = fetchFromGitHub {
owner = "orf";
repo = "git-workspace";
tag = "v${finalAttrs.version}";
hash = "sha256-1/3P7SenUhPrN19cVVrKxFsQt75FR0BG1P3ef3galPg=";
hash = "sha256-Twm/z627vXUVqJgAQ4pWjVGTgaSDhncHZVsImilWg4Q=";
};
cargoHash = "sha256-JoPs8Py8yaJ7A+OHKxDx3OwXbiJxKR2ZtkQAzXlXgJM=";
cargoHash = "sha256-ws+dqXGS0lsf+5dvUj/N16eEIH1FhgMhsnvYheYGm7s=";
nativeBuildInputs = [ pkg-config ];
+1 -17
View File
@@ -26,24 +26,8 @@
let
python3 = python312;
# include a compatible pyopenssl version: https://github.com/NixOS/nixpkgs/issues/379291
# remove ASAP: https://github.com/googleapis/google-api-python-client/issues/2554
pythonCustom = python3.override {
self = pythonCustom;
packageOverrides = _: super: {
pyopenssl = super.pyopenssl.overridePythonAttrs (old: rec {
version = "24.2.1";
src = old.src.override {
tag = version;
hash = "sha256-/TQnDWdycN4hQ7ZGvBhMJEZVafmL+0wy9eJ8hC6rfio=";
};
# 36 failed tests
doCheck = false;
});
};
};
pythonEnv = pythonCustom.withPackages (
pythonEnv = python3.withPackages (
p:
with p;
[
+3 -3
View File
@@ -6,16 +6,16 @@
buildGoModule (finalAttrs: {
pname = "grpc-client-cli";
version = "1.23.1";
version = "1.24.2";
src = fetchFromGitHub {
owner = "vadimi";
repo = "grpc-client-cli";
rev = "v${finalAttrs.version}";
sha256 = "sha256-MzUUYthXOH+mq7uxjY63k06pifFVUhOnZg8zTujpxxQ=";
sha256 = "sha256-y+EY0dhz5+rxegWEgBwcFHcz1MFlbygt0jAWh8yFQmw=";
};
vendorHash = "sha256-K0XnoFbAFdiVm3pDpiw9wuTSIo3NrU7wH1nFJEge9/c=";
vendorHash = "sha256-dkntncYuu5KtIpr73qSxb45NeiuKv8a1bJi645xsIx4=";
meta = {
description = "Generic gRPC command line client";
+2 -2
View File
@@ -11,12 +11,12 @@
stdenv.mkDerivation (finalAttrs: {
pname = "grpc_cli";
version = "1.78.1";
version = "1.80.0";
src = fetchFromGitHub {
owner = "grpc";
repo = "grpc";
tag = "v${finalAttrs.version}";
hash = "sha256-YgluQqrJj0NfrNqRjNkLISjEpEmXvjS5UmqAl3Xtf64=";
hash = "sha256-/dpTRG5JcZY2VAsqOYNIpFW7ouSy/eC2STulP7qdSYg=";
fetchSubmodules = true;
};
nativeBuildInputs = [
+7 -5
View File
@@ -27,10 +27,12 @@ stdenv.mkDerivation (finalAttrs: {
hash = "sha256-m8dyCoudTJDfP0KGcoA0Xj5LmRwN/8YOfEwiwCa8sOE=";
fetchSubmodules = true;
}).overrideAttrs
(_: {
GIT_CONFIG_COUNT = 1;
GIT_CONFIG_KEY_0 = "url.https://github.com/.insteadOf";
GIT_CONFIG_VALUE_0 = "git@github.com:";
(oldAttrs: {
env = oldAttrs.env or { } // {
GIT_CONFIG_COUNT = 1;
GIT_CONFIG_KEY_0 = "url.https://github.com/.insteadOf";
GIT_CONFIG_VALUE_0 = "git@github.com:";
};
});
patches = [
@@ -75,7 +77,7 @@ stdenv.mkDerivation (finalAttrs: {
zip -9 -r honey-home.love ./*
strip-nondeterminism --type zip honey-home.love
install -Dm444 -t $out/share/games/lovegames/ honey-home.love
makeWrapper ${love}/bin/love $out/bin/honey-home \
makeWrapper ${lib.getExe love} $out/bin/honey-home \
--add-flags $out/share/games/lovegames/honey-home.love
runHook postInstall
'';
+21
View File
@@ -16,6 +16,7 @@
libxkbcommon,
makeWrapper,
openssl,
perl,
stdenv,
libxcb-wm,
libxcb-render-util,
@@ -31,7 +32,24 @@
libice,
libxcb,
zlib,
hexPatches ? [ ],
# hexPatches: hex patterns to substitute in specified files immediately after
# install. Can be used, for example, to replace the embedded SSL certificates
# for compatibility with a self-hosted Lumina server.
# Since IDA is distributed as a binary, such patching is the only recourse
# available to us for interoperability purposes.
}:
let
patchScript = lib.concatMapStringsSep "\n" (
p:
let
forcecntDecl = lib.optionalString (p ? assertCount) "my $forcecnt = ${toString p.assertCount};";
in
''
perl -0777 -pi -e '${forcecntDecl} my $cnt = (s/\Q''${\pack("H*","${p.from}")}\E/''${\pack("H*","${p.to}")}/g) || 0; die "Expected $forcecnt substitutions, did $cnt\n" if defined $forcecnt && $cnt != $forcecnt' "$IDADIR/${p.filename}"
''
) hexPatches;
in
stdenv.mkDerivation (finalAttrs: {
pname = "ida-free";
version = "9.3";
@@ -45,6 +63,7 @@ stdenv.mkDerivation (finalAttrs: {
nativeBuildInputs = [
makeWrapper
autoPatchelfHook
perl
];
# We just get a runfile in $src, so no need to unpack it.
@@ -111,6 +130,8 @@ stdenv.mkDerivation (finalAttrs: {
$(cat $NIX_CC/nix-support/dynamic-linker) $src \
--mode unattended --prefix $IDADIR
${patchScript}
# Copy the exported libraries to the output.
cp $IDADIR/libida.so $out/lib
+6 -6
View File
@@ -22,23 +22,23 @@ let
in
clangStdenv.mkDerivation (finalAttrs: {
pname = "julec";
version = "0.1.7";
version = "0.2.0";
src = fetchFromGitHub {
owner = "julelang";
repo = "jule";
tag = "jule${finalAttrs.version}";
name = "jule-${finalAttrs.version}";
hash = "sha256-7py8QrNMX8LwpI7LCp5XgRFUzgltFP1rTbuzqw/1D8o=";
hash = "sha256-fwltqCmpCzWkCFGxGrhozW7LQmDwGT8nR9NO5s0nMfI=";
};
irSrc = fetchFromGitHub {
owner = "julelang";
repo = "julec-ir";
# revision determined by the upstream commit hash in julec-ir/README.md
rev = "81ddbed06a715428a90d3645f7242fa4e522ea16";
# revision determined by the upstream commit hash
rev = "e4134d89f34588e9fb5cc5698f27b0471918e057";
name = "jule-ir-${finalAttrs.version}";
hash = "sha256-Az9RDrwRY2kuMgL/Lf/x6YctfySr96/imWZeOa+J/rM=";
hash = "sha256-hdS/q2/V/N97fM0r6jrj2SEGWdx9pFivGE4K4l8iVag=";
};
dontConfigure = true;
@@ -62,7 +62,7 @@ clangStdenv.mkDerivation (finalAttrs: {
echo "Building ${finalAttrs.meta.mainProgram}-bootstrap v${finalAttrs.version} for ${clangStdenv.hostPlatform.system}..."
mkdir -p bin
${clangStdenv.cc.targetPrefix}c++ ir.cpp \
--std=c++17 \
--std=c++20 \
-Wno-everything \
-fwrapv \
-ffloat-store \
+3 -3
View File
@@ -7,13 +7,13 @@
clangStdenv.mkDerivation (finalAttrs: {
pname = "juledoc";
version = "0.0.0-unstable-2025-09-09";
version = "0.0.0-unstable-2026-02-02";
src = fetchFromGitHub {
owner = "julelang";
repo = "juledoc";
rev = "3461147f4630104999bb895bdd8e60f40ca23aaf";
hash = "sha256-0HuMWdoDoq2SgQhOnn6UnWXe2Js7/466cP2XpjvO5dw=";
rev = "e01e200293d134064c674f705c9babf6d23775e8";
hash = "sha256-JzIwIEd9kuVrBVo2H5bv3ROqpVUndBqLAZVYmoGbYuQ=";
};
nativeBuildInputs = [ julec.hook ];
+3 -3
View File
@@ -7,13 +7,13 @@
clangStdenv.mkDerivation (finalAttrs: {
pname = "julefmt";
version = "0.0.0-unstable-2025-09-08";
version = "0.0.0-unstable-2026-01-31";
src = fetchFromGitHub {
owner = "julelang";
repo = "julefmt";
rev = "cc30781206d3d7b88599cc51b3f9d7d7936de527";
hash = "sha256-g3vN2Hz4BA5c0KqIbNKHg0W77xKGZQFHUIKWjg5/UTM=";
rev = "85b4aaca42e958fb33d6769879ec0a375913206c";
hash = "sha256-1UR5hsG5squzb2ADPMmHMKFSL4/fePlYsSlfx70nPSU=";
};
nativeBuildInputs = [ julec.hook ];
+2 -2
View File
@@ -10,11 +10,11 @@
stdenvNoCC.mkDerivation rec {
pname = "komga";
version = "1.24.1";
version = "1.24.2";
src = fetchurl {
url = "https://github.com/gotson/${pname}/releases/download/${version}/${pname}-${version}.jar";
sha256 = "sha256-rxhsE+rFF2zv1rzpNiKsayTUs6qc0F9C9sonEZ2BsiA=";
sha256 = "sha256-6qVWoEo/s8GEq7vOF0qyDGAQztRVFp/Ygx0hXRP895M=";
};
nativeBuildInputs = [
+93 -175
View File
@@ -167,35 +167,34 @@
},
{
"name": "illuminate/collections",
"version": "v12.54.1",
"version": "v13.2.0",
"source": {
"type": "git",
"url": "https://github.com/illuminate/collections.git",
"reference": "86f874536cbda5f35c23a9908ee7f176caa4496e"
"reference": "adf06b38984b02ce29297b1489f0c757c56bff15"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/illuminate/collections/zipball/86f874536cbda5f35c23a9908ee7f176caa4496e",
"reference": "86f874536cbda5f35c23a9908ee7f176caa4496e",
"url": "https://api.github.com/repos/illuminate/collections/zipball/adf06b38984b02ce29297b1489f0c757c56bff15",
"reference": "adf06b38984b02ce29297b1489f0c757c56bff15",
"shasum": ""
},
"require": {
"illuminate/conditionable": "^12.0",
"illuminate/contracts": "^12.0",
"illuminate/macroable": "^12.0",
"php": "^8.2",
"symfony/polyfill-php83": "^1.33",
"illuminate/conditionable": "^13.0",
"illuminate/contracts": "^13.0",
"illuminate/macroable": "^13.0",
"php": "^8.3",
"symfony/polyfill-php84": "^1.33",
"symfony/polyfill-php85": "^1.33"
},
"suggest": {
"illuminate/http": "Required to convert collections to API resources (^12.0).",
"symfony/var-dumper": "Required to use the dump method (^7.2)."
"illuminate/http": "Required to convert collections to API resources (^13.0).",
"symfony/var-dumper": "Required to use the dump method (^7.4 || ^8.0)."
},
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "12.x-dev"
"dev-master": "13.0.x-dev"
}
},
"autoload": {
@@ -223,29 +222,29 @@
"issues": "https://github.com/laravel/framework/issues",
"source": "https://github.com/laravel/framework"
},
"time": "2026-02-25T15:25:18+00:00"
"time": "2026-03-23T14:32:36+00:00"
},
{
"name": "illuminate/conditionable",
"version": "v12.54.1",
"version": "v13.2.0",
"source": {
"type": "git",
"url": "https://github.com/illuminate/conditionable.git",
"reference": "ec677967c1f2faf90b8428919124d2184a4c9b49"
"reference": "7f1ef52d9a346f829421b296adfb7644a951b216"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/illuminate/conditionable/zipball/ec677967c1f2faf90b8428919124d2184a4c9b49",
"reference": "ec677967c1f2faf90b8428919124d2184a4c9b49",
"url": "https://api.github.com/repos/illuminate/conditionable/zipball/7f1ef52d9a346f829421b296adfb7644a951b216",
"reference": "7f1ef52d9a346f829421b296adfb7644a951b216",
"shasum": ""
},
"require": {
"php": "^8.2"
"php": "^8.3"
},
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "12.x-dev"
"dev-master": "13.0.x-dev"
}
},
"autoload": {
@@ -269,31 +268,31 @@
"issues": "https://github.com/laravel/framework/issues",
"source": "https://github.com/laravel/framework"
},
"time": "2025-05-13T15:08:45+00:00"
"time": "2026-02-25T16:07:55+00:00"
},
{
"name": "illuminate/contracts",
"version": "v12.54.1",
"version": "v13.2.0",
"source": {
"type": "git",
"url": "https://github.com/illuminate/contracts.git",
"reference": "099fd9b56ccaf776facaa27699b960a3f2451127"
"reference": "6728b11fd8748dea0206e0b21c993cb8ae7ce426"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/illuminate/contracts/zipball/099fd9b56ccaf776facaa27699b960a3f2451127",
"reference": "099fd9b56ccaf776facaa27699b960a3f2451127",
"url": "https://api.github.com/repos/illuminate/contracts/zipball/6728b11fd8748dea0206e0b21c993cb8ae7ce426",
"reference": "6728b11fd8748dea0206e0b21c993cb8ae7ce426",
"shasum": ""
},
"require": {
"php": "^8.2",
"psr/container": "^1.1.1|^2.0.1",
"psr/simple-cache": "^1.0|^2.0|^3.0"
"php": "^8.3",
"psr/container": "^1.1.1 || ^2.0.1",
"psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
},
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "12.x-dev"
"dev-master": "13.0.x-dev"
}
},
"autoload": {
@@ -317,47 +316,47 @@
"issues": "https://github.com/laravel/framework/issues",
"source": "https://github.com/laravel/framework"
},
"time": "2026-02-20T14:37:40+00:00"
"time": "2026-03-20T15:16:26+00:00"
},
{
"name": "illuminate/filesystem",
"version": "v12.54.1",
"version": "v13.2.0",
"source": {
"type": "git",
"url": "https://github.com/illuminate/filesystem.git",
"reference": "b91eede30e1bde98cb51fb4c4f28269a8dea593e"
"reference": "fabba6165de958c169eed909a3ec6a6574b33f6b"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/illuminate/filesystem/zipball/b91eede30e1bde98cb51fb4c4f28269a8dea593e",
"reference": "b91eede30e1bde98cb51fb4c4f28269a8dea593e",
"url": "https://api.github.com/repos/illuminate/filesystem/zipball/fabba6165de958c169eed909a3ec6a6574b33f6b",
"reference": "fabba6165de958c169eed909a3ec6a6574b33f6b",
"shasum": ""
},
"require": {
"illuminate/collections": "^12.0",
"illuminate/contracts": "^12.0",
"illuminate/macroable": "^12.0",
"illuminate/support": "^12.0",
"php": "^8.2",
"symfony/finder": "^7.2.0"
"illuminate/collections": "^13.0",
"illuminate/contracts": "^13.0",
"illuminate/macroable": "^13.0",
"illuminate/support": "^13.0",
"php": "^8.3",
"symfony/finder": "^7.4.0 || ^8.0.0"
},
"suggest": {
"ext-fileinfo": "Required to use the Filesystem class.",
"ext-ftp": "Required to use the Flysystem FTP driver.",
"ext-hash": "Required to use the Filesystem class.",
"illuminate/http": "Required for handling uploaded files (^12.0).",
"illuminate/http": "Required for handling uploaded files (^13.0).",
"league/flysystem": "Required to use the Flysystem local driver (^3.25.1).",
"league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^3.25.1).",
"league/flysystem-ftp": "Required to use the Flysystem FTP driver (^3.25.1).",
"league/flysystem-sftp-v3": "Required to use the Flysystem SFTP driver (^3.25.1).",
"psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
"symfony/filesystem": "Required to enable support for relative symbolic links (^7.2).",
"symfony/mime": "Required to enable support for guessing extensions (^7.2)."
"symfony/filesystem": "Required to enable support for relative symbolic links (^7.4 || ^8.0).",
"symfony/mime": "Required to enable support for guessing extensions (^7.4 || ^8.0)."
},
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "12.x-dev"
"dev-master": "13.0.x-dev"
}
},
"autoload": {
@@ -384,20 +383,20 @@
"issues": "https://github.com/laravel/framework/issues",
"source": "https://github.com/laravel/framework"
},
"time": "2026-03-09T14:26:54+00:00"
"time": "2026-03-21T01:00:51+00:00"
},
{
"name": "illuminate/macroable",
"version": "v12.54.1",
"version": "v13.2.0",
"source": {
"type": "git",
"url": "https://github.com/illuminate/macroable.git",
"reference": "e862e5648ee34004fa56046b746f490dfa86c613"
"reference": "fca71b5b0b1291a69a0383b886b9835410f45358"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/illuminate/macroable/zipball/e862e5648ee34004fa56046b746f490dfa86c613",
"reference": "e862e5648ee34004fa56046b746f490dfa86c613",
"url": "https://api.github.com/repos/illuminate/macroable/zipball/fca71b5b0b1291a69a0383b886b9835410f45358",
"reference": "fca71b5b0b1291a69a0383b886b9835410f45358",
"shasum": ""
},
"require": {
@@ -406,7 +405,7 @@
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "12.x-dev"
"dev-master": "13.0.x-dev"
}
},
"autoload": {
@@ -430,31 +429,31 @@
"issues": "https://github.com/laravel/framework/issues",
"source": "https://github.com/laravel/framework"
},
"time": "2024-07-23T16:31:01+00:00"
"time": "2026-02-25T16:07:55+00:00"
},
{
"name": "illuminate/reflection",
"version": "v12.54.1",
"version": "v13.2.0",
"source": {
"type": "git",
"url": "https://github.com/illuminate/reflection.git",
"reference": "348cf5da9de89b596d7723be6425fb048e2bf4bb"
"reference": "4fe1659f068ab2b50131cf906c5d8bba4e34df0c"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/illuminate/reflection/zipball/348cf5da9de89b596d7723be6425fb048e2bf4bb",
"reference": "348cf5da9de89b596d7723be6425fb048e2bf4bb",
"url": "https://api.github.com/repos/illuminate/reflection/zipball/4fe1659f068ab2b50131cf906c5d8bba4e34df0c",
"reference": "4fe1659f068ab2b50131cf906c5d8bba4e34df0c",
"shasum": ""
},
"require": {
"illuminate/collections": "^12.0",
"illuminate/contracts": "^12.0",
"php": "^8.2"
"illuminate/collections": "^13.0",
"illuminate/contracts": "^13.0",
"php": "^8.3"
},
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "12.x-dev"
"dev-master": "13.0.x-dev"
}
},
"autoload": {
@@ -481,20 +480,20 @@
"issues": "https://github.com/laravel/framework/issues",
"source": "https://github.com/laravel/framework"
},
"time": "2026-02-25T15:25:18+00:00"
"time": "2026-03-10T20:04:12+00:00"
},
{
"name": "illuminate/support",
"version": "v12.54.1",
"version": "v13.2.0",
"source": {
"type": "git",
"url": "https://github.com/illuminate/support.git",
"reference": "e54208c0b5693becd8d3bec02f07e8db9aa4f512"
"reference": "4ae94d59ea40bc6293ef3c087fc53a1f35619576"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/illuminate/support/zipball/e54208c0b5693becd8d3bec02f07e8db9aa4f512",
"reference": "e54208c0b5693becd8d3bec02f07e8db9aa4f512",
"url": "https://api.github.com/repos/illuminate/support/zipball/4ae94d59ea40bc6293ef3c087fc53a1f35619576",
"reference": "4ae94d59ea40bc6293ef3c087fc53a1f35619576",
"shasum": ""
},
"require": {
@@ -502,14 +501,13 @@
"ext-ctype": "*",
"ext-filter": "*",
"ext-mbstring": "*",
"illuminate/collections": "^12.0",
"illuminate/conditionable": "^12.0",
"illuminate/contracts": "^12.0",
"illuminate/macroable": "^12.0",
"illuminate/reflection": "^12.0",
"illuminate/collections": "^13.0",
"illuminate/conditionable": "^13.0",
"illuminate/contracts": "^13.0",
"illuminate/macroable": "^13.0",
"illuminate/reflection": "^13.0",
"nesbot/carbon": "^3.8.4",
"php": "^8.2",
"symfony/polyfill-php83": "^1.33",
"php": "^8.3",
"symfony/polyfill-php85": "^1.33",
"voku/portable-ascii": "^2.0.2"
},
@@ -520,20 +518,20 @@
"spatie/once": "*"
},
"suggest": {
"illuminate/filesystem": "Required to use the Composer class (^12.0).",
"laravel/serializable-closure": "Required to use the once function (^1.3|^2.0).",
"illuminate/filesystem": "Required to use the Composer class (^13.0).",
"laravel/serializable-closure": "Required to use the once function (^2.0.10).",
"league/commonmark": "Required to use Str::markdown() and Stringable::markdown() (^2.7).",
"league/uri": "Required to use the Uri class (^7.5.1).",
"ramsey/uuid": "Required to use Str::uuid() (^4.7).",
"symfony/process": "Required to use the Composer class (^7.2).",
"symfony/uid": "Required to use Str::ulid() (^7.2).",
"symfony/var-dumper": "Required to use the dd function (^7.2).",
"symfony/process": "Required to use the Composer class (^7.4 || ^8.0).",
"symfony/uid": "Required to use Str::ulid() (^7.4 || ^8.0).",
"symfony/var-dumper": "Required to use the dd function (^7.4 || ^8.0).",
"vlucas/phpdotenv": "Required to use the Env class and env helper (^5.6.1)."
},
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "12.x-dev"
"dev-master": "13.0.x-dev"
}
},
"autoload": {
@@ -561,20 +559,20 @@
"issues": "https://github.com/laravel/framework/issues",
"source": "https://github.com/laravel/framework"
},
"time": "2026-03-06T15:24:01+00:00"
"time": "2026-03-21T01:01:22+00:00"
},
{
"name": "laravel/prompts",
"version": "v0.3.14",
"version": "v0.3.16",
"source": {
"type": "git",
"url": "https://github.com/laravel/prompts.git",
"reference": "9f0e371244eedfe2ebeaa72c79c54bb5df6e0176"
"reference": "11e7d5f93803a2190b00e145142cb00a33d17ad2"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/laravel/prompts/zipball/9f0e371244eedfe2ebeaa72c79c54bb5df6e0176",
"reference": "9f0e371244eedfe2ebeaa72c79c54bb5df6e0176",
"url": "https://api.github.com/repos/laravel/prompts/zipball/11e7d5f93803a2190b00e145142cb00a33d17ad2",
"reference": "11e7d5f93803a2190b00e145142cb00a33d17ad2",
"shasum": ""
},
"require": {
@@ -618,9 +616,9 @@
"description": "Add beautiful and user-friendly forms to your command-line applications.",
"support": {
"issues": "https://github.com/laravel/prompts/issues",
"source": "https://github.com/laravel/prompts/tree/v0.3.14"
"source": "https://github.com/laravel/prompts/tree/v0.3.16"
},
"time": "2026-03-01T09:02:38+00:00"
"time": "2026-03-23T14:35:33+00:00"
},
{
"name": "nesbot/carbon",
@@ -1123,23 +1121,23 @@
},
{
"name": "symfony/finder",
"version": "v7.4.6",
"version": "v8.0.6",
"source": {
"type": "git",
"url": "https://github.com/symfony/finder.git",
"reference": "8655bf1076b7a3a346cb11413ffdabff50c7ffcf"
"reference": "441404f09a54de6d1bd6ad219e088cdf4c91f97c"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/finder/zipball/8655bf1076b7a3a346cb11413ffdabff50c7ffcf",
"reference": "8655bf1076b7a3a346cb11413ffdabff50c7ffcf",
"url": "https://api.github.com/repos/symfony/finder/zipball/441404f09a54de6d1bd6ad219e088cdf4c91f97c",
"reference": "441404f09a54de6d1bd6ad219e088cdf4c91f97c",
"shasum": ""
},
"require": {
"php": ">=8.2"
"php": ">=8.4"
},
"require-dev": {
"symfony/filesystem": "^6.4|^7.0|^8.0"
"symfony/filesystem": "^7.4|^8.0"
},
"type": "library",
"autoload": {
@@ -1167,7 +1165,7 @@
"description": "Finds files and directories via an intuitive fluent interface",
"homepage": "https://symfony.com",
"support": {
"source": "https://github.com/symfony/finder/tree/v7.4.6"
"source": "https://github.com/symfony/finder/tree/v8.0.6"
},
"funding": [
{
@@ -1187,7 +1185,7 @@
"type": "tidelift"
}
],
"time": "2026-01-29T09:40:50+00:00"
"time": "2026-01-29T09:41:02+00:00"
},
{
"name": "symfony/polyfill-ctype",
@@ -1524,86 +1522,6 @@
],
"time": "2024-12-23T08:48:59+00:00"
},
{
"name": "symfony/polyfill-php83",
"version": "v1.33.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/polyfill-php83.git",
"reference": "17f6f9a6b1735c0f163024d959f700cfbc5155e5"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/17f6f9a6b1735c0f163024d959f700cfbc5155e5",
"reference": "17f6f9a6b1735c0f163024d959f700cfbc5155e5",
"shasum": ""
},
"require": {
"php": ">=7.2"
},
"type": "library",
"extra": {
"thanks": {
"url": "https://github.com/symfony/polyfill",
"name": "symfony/polyfill"
}
},
"autoload": {
"files": [
"bootstrap.php"
],
"psr-4": {
"Symfony\\Polyfill\\Php83\\": ""
},
"classmap": [
"Resources/stubs"
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Nicolas Grekas",
"email": "p@tchwork.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
"description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
"homepage": "https://symfony.com",
"keywords": [
"compatibility",
"polyfill",
"portable",
"shim"
],
"support": {
"source": "https://github.com/symfony/polyfill-php83/tree/v1.33.0"
},
"funding": [
{
"url": "https://symfony.com/sponsor",
"type": "custom"
},
{
"url": "https://github.com/fabpot",
"type": "github"
},
{
"url": "https://github.com/nicolas-grekas",
"type": "github"
},
{
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
"type": "tidelift"
}
],
"time": "2025-07-08T02:45:35+00:00"
},
{
"name": "symfony/polyfill-php84",
"version": "v1.33.0",
@@ -2495,11 +2413,11 @@
},
{
"name": "phpstan/phpstan",
"version": "2.1.41",
"version": "2.1.44",
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/phpstan/phpstan/zipball/a2eae8f20856b3afe74bf1f9726ce8c11438e300",
"reference": "a2eae8f20856b3afe74bf1f9726ce8c11438e300",
"url": "https://api.github.com/repos/phpstan/phpstan/zipball/4a88c083c668b2c364a425c9b3171b2d9ea5d218",
"reference": "4a88c083c668b2c364a425c9b3171b2d9ea5d218",
"shasum": ""
},
"require": {
@@ -2544,7 +2462,7 @@
"type": "github"
}
],
"time": "2026-03-16T18:24:10+00:00"
"time": "2026-03-25T17:34:21+00:00"
},
{
"name": "phpunit/php-code-coverage",
+3 -3
View File
@@ -7,19 +7,19 @@
}:
php.buildComposerProject2 (finalAttrs: {
pname = "laravel";
version = "5.24.9";
version = "5.24.10";
src = fetchFromGitHub {
owner = "laravel";
repo = "installer";
tag = "v${finalAttrs.version}";
hash = "sha256-RlY6is5rRks2mXdE2/EXuSWX2CxJuK+q8yfsDcZMFBo=";
hash = "sha256-JPfsj20kLsefav6NiKA7QRADIzvKCCkFxNIeym7MYIY=";
};
nativeBuildInputs = [ makeWrapper ];
composerLock = ./composer.lock;
vendorHash = "sha256-o7YryCZjTm/O4ts21NjODqacdXnjWZUH8Dmr8fPnDEg=";
vendorHash = "sha256-UefQzIwq6w9CL6zMHsco/Yyei9hqxNqdb6XMdCU+MXo=";
# Adding npm (nodejs) and php composer to path
postInstall = ''
+2 -2
View File
@@ -8,14 +8,14 @@
}:
stdenv.mkDerivation (finalAttrs: {
version = "1.03";
version = "1.04";
pname = "libhomfly";
src = fetchFromGitHub {
owner = "miguelmarco";
repo = "libhomfly";
rev = finalAttrs.version;
hash = "sha256-lav/c5i4TXiQSp4r376sy7s+xLO85GutTb/UZJ70gh8=";
hash = "sha256-ND2ZBKwHlRYTqxC+ltkCQ2lolNAkhZZm5hriIaOLqC4=";
};
buildInputs = [
+78 -19
View File
@@ -1,29 +1,55 @@
{
"@esbuild/aix-ppc64@npm:0.25.2": "e25252d47d27d5e15a09ba7e7e906fe35d90a363e1eec7bc1e054c066bea6f89364139385008f78e8b4523ebaecb1f7a678213c8fcc2cd0309d539bbc455fd05",
"@esbuild/aix-ppc64@npm:0.27.2": "78d13201fd4d048d19955fc510db508b14b5fc1a38f4ea506469eac65db770c65fc3727df15b087778178fc8e3304df88559a7441d227451efd8a0b1a688a729",
"@esbuild/android-arm64@npm:0.25.2": "b387ab30ec70902c81ca1231a7838ccc993ad8dff9561a5ec7d7d4e5f03426153d42e496985a02539bce55f6d1048156f36e24a29f61fa5fd8e0587f62696703",
"@esbuild/android-arm64@npm:0.27.2": "e8aded79b2f1f8841c082396f7476bee51c056ed468e438fe2ee00b6b73e96acd640d0b8d0cc13e63c972898f6cdd275483c36c562d4186f0efc01881672b08a",
"@esbuild/android-arm@npm:0.25.2": "8e7efb22407ad9a985ff5a09dc0d2b895126c6ccca470db671ca0a3e3026f79666af20ce5d296311f5d056e95ca71e743feeae526f94dcaacb5a6969f9963283",
"@esbuild/android-arm@npm:0.27.2": "ac673502cf6672dabb4b82a26bb3cc120402acba1b87a92481c0a37c8fa06847fd16503714bb227f6351d836f6f60c644ab50fda95c896d8eeb3e5ec3af96226",
"@esbuild/android-x64@npm:0.25.2": "66256eee6168c2f903c45c82863f1377f525dc7de0fc902fca412a44d0abbb8a25761fb9e10c8663b25b0f816d86b7e353d2b77ab39eae95234333f9d233ddc4",
"@esbuild/android-x64@npm:0.27.2": "dcf5c84443645af089e3b82421097c0288a4bdebabf231449ddd66e1b48952e5af975bd26954a50be0441605b91cfe779ca2192bc4b02b7b19192a2a86f912f1",
"@esbuild/darwin-arm64@npm:0.25.2": "36a568a779000133d077e2272181232f52939c3e0b0b986ad3f3fd6ab29628c148e88cd857f6de41a16e22e6a252bb16680f91c00c7d813690fa9bc060f58386",
"@esbuild/darwin-arm64@npm:0.27.2": "cf08b03672941acbea8b509db79a7cb9cf8c81b563c75414c87b8c8442cb1178063eaa14b7cd1ae6cae95dba7e1de9343b721a6d19523a5f21c3d1367e3688b7",
"@esbuild/darwin-x64@npm:0.25.2": "b761a20f8db7bf0499f6cba51c72104e733d9186d6f34a7f5e4590c02ecc2f9b84cd02c4e7bd3dade4156b7f92015cdbddc516dd1e4859233e3155cb0fecda58",
"@esbuild/darwin-x64@npm:0.27.2": "5d3207cf85674b01a817c43064525e39b215802a9ecf352d15e92e926c3e549d95b30e127c2d3f8196ac9472ecca87a861d9f270221ee55884c7a6d0aa636fe1",
"@esbuild/freebsd-arm64@npm:0.25.2": "8f869d6200dba388ac4c008c7a5b6522f44797370a12f94fd19e37b6cd76bdbdf48d0fa893b5ce200a538a151281e9f71e985f82ec8b8c96f16075e45266c718",
"@esbuild/freebsd-arm64@npm:0.27.2": "45f475fc6ab2f4760155ca2b50c4cf0ea8aef2bfad3ba4548f4547898d3cc785dcfc2ea58a190be3c20c715c771d1d694a9eb6ef5fb6b72d93b6abc94f366b98",
"@esbuild/freebsd-x64@npm:0.25.2": "6cdfb6c6d6f6ead324a9ee75ab1068305672207cf1d3189bcf5599ec158e0eb07d74ff63597e389777163b4399da1cc6164b918a7ea9e798e7fd45eee6aad9bb",
"@esbuild/freebsd-x64@npm:0.27.2": "7fb62475cb9cdf54d22f2fa984ef57f891d05f366143227efd1d28d507a3b1f2c723239b3e22b3ac418467e6284a08eaf6dcf0bfd2a0f1bea06d0ac73c2aa8de",
"@esbuild/linux-arm64@npm:0.25.2": "a0d51ec6e91e97461916eb6c25b12a8ea6b58ec2f3d91199c0c3f02ec569e98ff1389700250d4664d8394d3d5b5a051d695b34bfe77ab4a12985dfc18f315b73",
"@esbuild/linux-arm64@npm:0.27.2": "89b8e94e2f4e7cf564623bb6b1d2e9ab218c6d4cafed93778fb797b552d3495f08c99e49d9a2573823bc62660353ce4b4cf17a2828359a3437a9caf8da99673b",
"@esbuild/linux-arm@npm:0.25.2": "5a4cf4045a2a5949dc8875dbad9a82fde7333d3f59b66d8cb614b34b76a7fb715a8d74e41f0788104bcef0436108ca548d71a543f582073e0458e20370dbb802",
"@esbuild/linux-arm@npm:0.27.2": "fd7c845a5ee2073ef6c5bc9d914844b48b82006ebf00f5acb98a43f600ee83fda578034ed8eb6f7f462ed4e3ecd8b7c6570a78bb708ee7eb10b93751ab879ad6",
"@esbuild/linux-ia32@npm:0.25.2": "535c1755ed95a47b05b865361d2efbef3490f05815743c0d2372f55a2e14f0cc1d5ed6e5dd6f91c7aea871ea2f64cea021eea6e714027148489c54edc6e2b19f",
"@esbuild/linux-ia32@npm:0.27.2": "23f67cfbab67aa860d7afa842e29fa75eb16af8577a811c54263fc3a276c05e468d532bcdb118d174624ed76a9e133d2520567937d4ed646caf9dd19aadbae15",
"@esbuild/linux-loong64@npm:0.25.2": "8ff82f5cdd7a9490dfb3be64c990841d2a8e1a0ce83d76fa8d5e9b0ba7aa91ca725f338ff43b4d69a18744905f1730adf87a7f8359ae839030663e0bbe2807e2",
"@esbuild/linux-loong64@npm:0.27.2": "b37e531c91346c7b5d31ce6664a334c391a27c3c9fb282136abf232111575387e9d066abf27f29436afc913270a8e2c2b09c1210fbf87e70f1028685d94ec4de",
"@esbuild/linux-mips64el@npm:0.25.2": "382520bf655329d04f65e041f9bf774d11a2232bdf5125934732db915c179b1172ec3429722d9f02f46ee5bad7b70372872bfd003d7c1cc5ec95b7ca6ec8a983",
"@esbuild/linux-mips64el@npm:0.27.2": "8b48a6c7dc8f16147c1087b56710685f3b89279498caab6b63cad3db9402308adf633111d773cfe31756d41fe46e895f2c1ece0fc1ed484ab02e92c28357f0c6",
"@esbuild/linux-ppc64@npm:0.25.2": "c5736195867e9c441cabd0a2cbaa62f91c4e4963ed7490018d09a932d549e1d281411ddf9dbd4a4b68f0c0298c1321ba15fd4e493cdc3dea3e14b7a6207b12f8",
"@esbuild/linux-ppc64@npm:0.27.2": "4f207f87bfc1253974e00d3cf27316d3e93b7e51fde46ed618367e62f2875dffd66812acb85e8d2949dffc73eed7b3939a42bb93f40ec8fca4a6988173709dab",
"@esbuild/linux-riscv64@npm:0.25.2": "c72879775daded232fb2e36a6fe26058ec1ccd1f5dd6a76b4e8da700c6dd20cb15b684bce34569cadd41f25a0a53bd2037994279856bb3148f8c16055adcaf68",
"@esbuild/linux-riscv64@npm:0.27.2": "837a0aa03e82a1b853632d153515d68035e57b39ccf730a778311c04e3429aa80f001d990392519a641945501f6ab3af331481eb4551e99718e7cd2ba5862089",
"@esbuild/linux-s390x@npm:0.25.2": "d8810561312c4c7705f3c580ef8cd38e2768feb19ebf2899595a227f59dfb6ca35182f8ad7ca65d503cc5d9c688fe742002243387aa09b98b8c32aabc522ac4e",
"@esbuild/linux-s390x@npm:0.27.2": "426a4b9d9d4c58d61031a412c64c8cfb0db0e38da3cf4dade253c45a46dc539dccee24700e965e66c7c397a65fef765fc43bdc6b3f46d6bc6f289f79c4b6d7d5",
"@esbuild/linux-x64@npm:0.25.2": "32c8a5f7d0640655ebf60f379ee2b037fe83f3f0edad911a9098505e6ac589c5f2873ff441017183626a19d334e3bb59f58411f2d5474eb7222917575593abea",
"@esbuild/linux-x64@npm:0.27.2": "febde9f6908220698cf72947534eca590c2b5ce8b0c9bc6170649c5f64f7f93808bb9be2caabd7c63068dc68e218741f27a17ffb8826d87fb487a0639888b90f",
"@esbuild/netbsd-arm64@npm:0.25.2": "0b7f77ec46163feac839b17b94e7db87edf61441bd9a67115722bf72781021c8220576a2e2c70bbca45b89a1e69a6b132f5489b59e84241b197272c1ee080304",
"@esbuild/netbsd-arm64@npm:0.27.2": "1f69c833bfc5d1d7c58f52fca35637df1686a5bff5c15af900c165b2561a809d805201dc8de712fa73c69205e96a078096cd00b00e9ca8fb5cd8741e4ec943b8",
"@esbuild/netbsd-x64@npm:0.25.2": "6d6686f5d2eb79b042bd4f38dc95e73a8e290a057be1b6afc42867830c9cf2313600b4fd53287f2f418c9f454bf5df02154b16dcfbfc33a6eb2ce9722a4eecc1",
"@esbuild/netbsd-x64@npm:0.27.2": "29c9cbd018788521145d719013020dfbf744185eaeaff845f0fc925c67630c66743b03486a2531493f79482d2315e910a27a31f89a791e0a9589e04d86d295d7",
"@esbuild/openbsd-arm64@npm:0.25.2": "8a08c16440c6389623bbacb717412635aff61a1552c917e707d71da1dc92c618eea9a9aa1606a4a4f322216f100ede658523baec2e82b1f11b4efd523d491173",
"@esbuild/openbsd-arm64@npm:0.27.2": "dccfe8ca6c0d648a26a626b5a4caf3325fed90d7ae343db2a86be9af2479391518c02d54470c2690aec23af1359debe7fbf125d979b5ea891a63fe4b206c2d6f",
"@esbuild/openbsd-x64@npm:0.25.2": "43baf3248bb460e169cb1b5f26f5eb720088fa0d467c77f4f72c6cfa8e6d7b7794c52ed5e4a9a2113db53313c5fec86e352c94939abf601ab22d5e6e9addc4e5",
"@esbuild/openbsd-x64@npm:0.27.2": "0bc581af266608ba01c530ec1fe2b475630dbd56538562f8b1748f7044727bd08d0784afa9aee8aa0a2afe843bb0b47572b4c6babb2a9953808d37263d730be1",
"@esbuild/openharmony-arm64@npm:0.27.2": "1f04a6d690bd2ef231801b0c46b40359b4d4451409cf46a865613f3942835e7633286c328c31f3a10065491f314e6c7c47d7a8f79c1a1ec25f59ff46f5765c6f",
"@esbuild/sunos-x64@npm:0.25.2": "0babbb99d3bc3ed818b2b01fbf65ebbf5930defb850e5a5a94a3ba5fc7bc2463d561c07af0d3ac6d6d0197c86682750ceb47abf7d293dd3222b1bd33da9f8aa5",
"@esbuild/sunos-x64@npm:0.27.2": "9543db0acc86a762f9fd708a3226ebc45a1625885532d153928b9d2b0de90b6d78db0f9b77261d345b95c1ba7282ff3ab0fa37932c2dcd9b1c2b7da7cf39cd76",
"@esbuild/win32-arm64@npm:0.25.2": "205aab6fc7b0ca7ee992cd24d73550110c1f79dc2ca724384bb52aa95111248df022375cd648314bd7eeb42083d576c55572f3d39d4ddcd82fc7372f1e7688b0",
"@esbuild/win32-arm64@npm:0.27.2": "2bfe0fef3ace4a5b0f7647168ae21eda9344a8bef4924d60d1ca781b59eb1f7fef0858aef6e2fb8c185638117bfb7dc18c55a700db57799955c8f655eaaf1f44",
"@esbuild/win32-ia32@npm:0.25.2": "aa38c0e082e3111e84929a64638cce1c3e1114218726e41c99bf239f2c05be94fb6fe1083366aa342bbd8e75fd449a6a3bcae9b6b3b84066a3a3882dcbaa0090",
"@esbuild/win32-ia32@npm:0.27.2": "c510d04bc11f11b7bd6bbf0ea28e2ba484e6232b7655b5cc8ccf8276ef7da760d54a79eaef87a1a40a81632a5ec4a9f7bb08f63920e5d145c8a893ae76d93094",
"@esbuild/win32-x64@npm:0.25.2": "2f2d147c610a3c3ab0f0f97132e4421464d3d38b835d989e8c324b7397e2592cd05485ec1998ae352f06d3191dd1d71c24f94f63f7c70cd8ea8a4c85441502a9",
"@esbuild/win32-x64@npm:0.27.2": "d11933a70f9c908e3cd7202071dc23a9dea8afa58a4c2e22a3beab3516d0898345a5ebb2af47ffb2cc7f5d2a6d788ed4681fa7f37e121f1605149f124d632c67",
"@img/sharp-darwin-arm64@npm:0.34.5": "3298dfb02234e120d45476559f638b2843c13c1efe29559926ce91d7e2245fec4625e098b322a960b3c8cc8e682d4030934a12b3e21108be79c0e67b8e9cf688",
"@img/sharp-darwin-x64@npm:0.34.5": "fe4beb8013145491ed1f15eb58769d78c2cfaafcf76ee1acef25d27b27cad7dd1ea5f6cbd7dce2e55b9a4dd2d9cbc49cd02bf985e190c7b70406d40cc9807cbe",
"@img/sharp-libvips-darwin-arm64@npm:1.2.4": "7e2ad47b07dbf3966f706a2bc97f06422c0c07c8604cad25ea52426bc2f579cf9dffed90d5ef562f42dc48c5e8ba97cdc3ce7ce51c53e83a647222b7a2007b45",
@@ -48,33 +74,66 @@
"@img/sharp-win32-arm64@npm:0.34.5": "887f699f440e8474f4680913ee06e8c7f9fe8f5500e8ef8310fd29594a1539c567c111043f643934c09089e6024785c153c40ea3a1401a6e6659b23058af68f2",
"@img/sharp-win32-ia32@npm:0.34.5": "1723fb245d946cb095e7337b17fef23d1f4903f2a4823a75d8eb489d738e18a19a2adfcefdb98a7d1b1b5ecc296c0b74858cd5d6f8af19895baa9b098b2bbd66",
"@img/sharp-win32-x64@npm:0.34.5": "2cc1c74b6749d79155752cf689410b22a3506f78e53090f880daf5c638a0cfd0e56f32fb8676c7c2c3c9b1c2811a70f08d95337deee2ff03c0af9272488300c2",
"@next/swc-darwin-arm64@npm:14.2.33": "c54162c34327aa6832de93963a85ee62b5afab1633c16b8dd3864c2656a9bba8588ed1291447f63071bacf28513e8510ad34ddbb3cf3cb05d2192d095de8e1b3",
"@next/swc-darwin-x64@npm:14.2.33": "c7b930da25ab151ab09718308b497017c9955334195d926b8d9189c7819a7eaa13f4bf91307349553cfa76901d668094f2c5c767ac8140e56ab24374005abdc5",
"@next/swc-linux-arm64-gnu@npm:14.2.33": "57051e605d8f4e6a2c97312efcb4f008e250bc0ce34b715e4381308da4519053f122509ad2bbdad29a045327cd92755160a38c5466de2be8c858641e576e9c29",
"@next/swc-linux-arm64-musl@npm:14.2.33": "7dbe893c96daf03c7e3de9698cb3d02cad82365a45a1500a3e66d978d6c0fd35097d35070388de4b90444b2d20c3ae209e433ca33549d0e376bb08489c1f7f3b",
"@next/swc-linux-x64-gnu@npm:14.2.33": "e0e16c81f21a357c24d735f73a83f9be9dbf9acb129b16afaf0c4e1500ed7d023d958c226d31bd01180e2bf48a6e2608cd107f442ef7b58ddf9fd0cbe8bed185",
"@next/swc-linux-x64-musl@npm:14.2.33": "20a0bff6635840463ffa2bf1653b83b789b45553395d26568beb255ec7bf8af617d1bf53d8513ed53b88f37b23c132af18351a045d56a73e641759584a801ec8",
"@next/swc-win32-arm64-msvc@npm:14.2.33": "f4b5a0a49a1b8e28697cde7f48ecb9832931cb3d3cf4ca5721847214c82752723edb5a01fde9f33ebbe20e6bf0592978b4c81763c4fd80875207d79c51405ec5",
"@next/swc-win32-ia32-msvc@npm:14.2.33": "6f027cd1670e194c4f75e34aeec0952e812d2aa60a81b85441d2f79184d0b44cffebb7096e22f39f3cfdcb50cc00414f8bc8984efeddbde920d4fd597e000beb",
"@next/swc-win32-x64-msvc@npm:14.2.33": "7efab66f71299f999f313dfb95ec5b1f2fe80c9f8604cfd0f42d255b71b2e4c9ac6236e3386b564061a8ed38f3f2beacb72a58f910da8064a39bde28a406469d",
"@next/swc-darwin-arm64@npm:15.3.5": "a670196605b85fcedc1cf03f9b5a0176360850c8f70cb9a0e9f6edd595345dd66e5ff7fc8da8d0bad26d9d9977164fe79ca50616e6b14ce0b2ed43784974a584",
"@next/swc-darwin-x64@npm:15.3.5": "d34f8927b6d0aa7a3aac3d4972a0626e39421bf00de73167634ff45b02f169e385c9c290b1eb0c89a5fa0bd40d66656ba4bd5ab9b72cb153fc239888356fc3dc",
"@next/swc-linux-arm64-gnu@npm:15.3.5": "e0e171330ff40ed641e6a847f0dd4f6c81941dfe8640730844fc584c0cbc71edb88df1c9f320e1a41747b60caf18258242c7c0c3de19ac926dcf0c842e402109",
"@next/swc-linux-arm64-musl@npm:15.3.5": "a6de4dcada20aa54809dc1f701f5cb2902681237fdc3aafdc4be257738e1bc492e08e48bd822c62733ae42850f7b8ae08136cf62bd2d7c3255255fe4d2bb8a6f",
"@next/swc-linux-x64-gnu@npm:15.3.5": "7d55620efc7ebeb7b047c7f6a1eafd10305086b1ca24042e33db9f273b92e5c33990f5559d0a90631b520530c0ea14829fb71b31ecad42d95217d204be007c54",
"@next/swc-linux-x64-musl@npm:15.3.5": "bd71cab5c2c875b2c5a1ee5b055d181b3a26e3c274a9a60aa040ba20074e83f9d9a2d2bc4a3b8e0837983fac4fd19b8457af0f9e08c821cb820c84da1cff521a",
"@next/swc-win32-arm64-msvc@npm:15.3.5": "52144f5a098fb8aaf3d2561e9109bb816e173f360377a09cdb43f905d46c573c9079c1e1692f400cba80cc5774e26d77d0e0db78635f744d63be42ba48f6aba4",
"@next/swc-win32-x64-msvc@npm:15.3.5": "df6cac326e63f3931019e3da693d6082ac206b8b0d1088c2f811c6c1a3917fb8a8c39710bf968e593deff5129357ba9f9a31b2a8e2bd7c01dd012dc32efc19d5",
"@rollup/rollup-android-arm-eabi@npm:4.55.1": "7977b28d6cca8d7640db7ecc4f76fc6e39c7fa6db24a3edeb912a5a3406115ecc9d70c44c46afc51d1b335303f83a76bf1d23ea3eb54e0b41d5c3044d26fe2e2",
"@rollup/rollup-android-arm64@npm:4.55.1": "750b5c706ccf65a4c901f699391e4b825c5bf8c42360c30ad070c63a6e0f29f323dd73d1a378143ef2848a9ce0ac2320aeb85368eb32565326b49b3300b49858",
"@rollup/rollup-darwin-arm64@npm:4.55.1": "fa5637e268297d44ba608a501a4ef94d6daf83c1c9dec25301b94eb7e3f37696b52be6b9281672d652eedcd24c4e8c395176c4503a94691b982437422bec08aa",
"@rollup/rollup-darwin-x64@npm:4.55.1": "e03540b0ec238fbad6688a1d257ec6e96dbdebfac00920f0ff11b883aa911f9c4fcbfb8a79796eb216c6ebb2f045fd9a417b477a42945ea851d17dc29011360d",
"@rollup/rollup-freebsd-arm64@npm:4.55.1": "61391fb23925c9019beb6e608917a29aea2de80a1fefc874f3df4817c1e4ff4449bc285a71bd00554e295b64303ba9a1ba153962f6fc2bef9b40578a1efdb6bd",
"@rollup/rollup-freebsd-x64@npm:4.55.1": "e5f8c19fb43a252b01ce84a6fcba591213078672720c553a980a88b0005de17322ee713a20095e2c7a2e92feda7177bfb4d2d56cf4cc84cd3763d3bde86676f9",
"@rollup/rollup-linux-arm-gnueabihf@npm:4.55.1": "009639b83c1ef9a9e7d446fb937d92f1ff429ef95c60b9cfbbe8af82ea1bab4efb509e6e5a0df3a2dd5e90ebc33dfccb391152ba5272fcd311bcc7e921a72cdd",
"@rollup/rollup-linux-arm-musleabihf@npm:4.55.1": "0f08bebd570ef1239f204d5e577be401aa6a1d71f947fb73116e1af5b12e7ef67f5ef8893ed604a058e065a3cddc7a632bf78a28a78c8d6694793be1075cfc65",
"@rollup/rollup-linux-arm64-gnu@npm:4.55.1": "a9cfb414e6d54e67958650740c1205780be0054a7ee4c507d320c1180ff3c78e67f4243eca59c5e3cd6126ad4310ff1b9e886c42464673c68a5522e8789eaa6f",
"@rollup/rollup-linux-arm64-musl@npm:4.55.1": "93dfed6c7899266c0bd31c93aff6b3ae1cb457725fdbeafa3f25512d2152f656cab34fe85212546acd772e6e064ace886263dd8038f06bbe73abad92bb7675ac",
"@rollup/rollup-linux-loong64-gnu@npm:4.55.1": "d132d1964b3bccb79dc8d50e4e1ed1950ebf5832458c2eded1c8012bd8704ba022c17ce177be0245cc80291db9e7a4cd67de0aeb3187f97b135421f0019c8e74",
"@rollup/rollup-linux-loong64-musl@npm:4.55.1": "23f3ff2f51344f7ee00faea8c79d640ee1ce72bf051497f5b0b573daf4c81a84f78deb31fc5d4cc9a78cdbaafda4012217b3d19f261841e638b8620587449808",
"@rollup/rollup-linux-ppc64-gnu@npm:4.55.1": "ad2e4d1a2c21cb807b6d5061f653256b26d16f039846358ea40ade27921883e2bf180b8293cc0d19a625834938b411bed54b6bc791dff647d198dd482aab0ce7",
"@rollup/rollup-linux-ppc64-musl@npm:4.55.1": "6c35161babfae55d63caa2ffe34985faa891c8c3e39259ecc67bf9815759ed11a6291935a5796323b954e6d7ca310d9097f66750637f42a895a68290ddb627d8",
"@rollup/rollup-linux-riscv64-gnu@npm:4.55.1": "bc336ba42aa462bd53b63bf57d8625555e407b99e1b863696aa25b5bf92bece017407603f04b28f208bd9ce4661c34d5d933a1fa7799a47ec4fce73c5b473078",
"@rollup/rollup-linux-riscv64-musl@npm:4.55.1": "c097771148f27cab22246748f736d1c9fe9dcf07a57e74d96da42cef9fc2a15188dad115565abbb3ecefbfcb101ecb270e1c6641fdf5329bfd6433574e56224b",
"@rollup/rollup-linux-s390x-gnu@npm:4.55.1": "6ac4638983d52ac6c2983f06d0c4315c0040ed724bcc6e13443d904363bbf1c2af02888f09d4d9f874a2aaece127fe863e697347c862b78be77c9c2f7d426e3c",
"@rollup/rollup-linux-x64-gnu@npm:4.55.1": "2d673e4dcb64844c280888485857c4f4ac782e1cf34cae2cdda29418fa2a6c2cc94222affa28443450a7b53c7194294d4e93af04db51bed7555b55c7503ef3cf",
"@rollup/rollup-linux-x64-musl@npm:4.55.1": "167444a5a61f85dcaadc10a352aaee070b9c83f3f6fc5474f131aa4e16b82c091a1b6275ca6123ff1601ac8fa758f99fbdff40dafda4ebca773e9f511a86787f",
"@rollup/rollup-openbsd-x64@npm:4.55.1": "ded152f0b1072382782d242305f33a26c645bf5b88fdc76dbaf9d04ab9be7209ca9a6f323fe521c87dee6be677ebb917e1ea7963664d20d3479dc0e29ea48ea0",
"@rollup/rollup-openharmony-arm64@npm:4.55.1": "d8e3e5bd8534f47551429aa6fd5bd3d1ff6ffb5d2ffa763f1226abb9a27099236559029ac6069b9379e4aa5d4944a163283abd77bffdae4afe3c7b479143e148",
"@rollup/rollup-win32-arm64-msvc@npm:4.55.1": "228e53886de21e1becd3971e707182b59e856809ca76f1f94e91bd1aa9e215cd71b7dc911d63557c41dec196a25fbda708a56ce17e5f033c66db7314239ebf62",
"@rollup/rollup-win32-ia32-msvc@npm:4.55.1": "aa171c828035fec86fb8f86f1e41398f4fcfbd1aee7d9e0a9639dd7c410b19bb5faae65867873b15204efc41178f5ab49f54ec48a4519f659ad834adad93c6aa",
"@rollup/rollup-win32-x64-gnu@npm:4.55.1": "1c257f36ba62999b9f39af1e97f6175270563b0b0db404c1a897aa28733493f8b54014a997842e5f992639385897c7f59a3648512814858894f8a7498bfa27cc",
"@rollup/rollup-win32-x64-msvc@npm:4.55.1": "9b87a9a0b31a8b6a9bac8c30747026dfd8838b3e8bb3424cd9b5ce61ba9837b46016d7044e94eecf0ee1aee787a00df5e5332f0f685a2e6c67ee20a2a5dfdcde",
"@sentry/cli-darwin@npm:3.3.3": "4dace40f503c119d8b1091181879152c9336a1f47573f255f6ce8950b72b80ddad87c3150d61ed8527a8e7c31bce8c69346fafeb9de76663c1d3b029525154b5",
"@sentry/cli-linux-arm64@npm:3.3.3": "4fdd804d99bc4d3c0ac7ddc6c48d7fa4e53a1742f68a7939a53bd59fa420dd914aa6a243da359b876f812b135af5f29440e5b77db9159022de11221fcabf2c14",
"@sentry/cli-linux-arm@npm:3.3.3": "8c82487274ff7e2b51f09ed8e25caefc0423df18af6e4e244a49c3390d872132d3498c806c1bef0b89772976e6276f620b33cb532c6e622d58d4bd27ed1a9e22",
"@sentry/cli-linux-i686@npm:3.3.3": "77d7eab7a576ab46173a431f48693fe20dc687fe849cd3382c4b68f71a1fd57301a898dec8498ff88cbc56d766d1505b04bd2ab219765eecc73841f54389f9f7",
"@sentry/cli-linux-x64@npm:3.3.3": "b9ab512b76eea319511ce5bdfe4f3882c9516e80c58eb56f2953ad3096de8f2a3b90f3a1fc615901d8934a63be4067234b7f5527f54d0ff47fe9d3ff88dcc0f5",
"@sentry/cli-win32-arm64@npm:3.3.3": "b6aa8dd66a8207906f375a8295479579f9cfdd4141ed60adaca7508b9df7015fa16931d622179b8c74418f279899ad3c8093756275ba15bb2fb01ed42c0a0a18",
"@sentry/cli-win32-i686@npm:3.3.3": "c68d6e9a0305a8ff47e81ca3353877a86bc5c4fc2d8760cbfc8aa7a042aea8a5081c6daacbcf305d3c7e61a54cfab4a73627060570f3ca85d703fec21092b8ed",
"@sentry/cli-win32-x64@npm:3.3.3": "7688bb4033dca777ab5836717ae9e28a72d08d9c5f5417a832a2b4281ef0e5c64cefc18fc795e366293d81aca926638cc51e8e251c5f43df97e354b9a94c72f6",
"lightningcss-android-arm64@npm:1.31.1": "d5d95250f3f5f34c228805eb9de3657f4c7586247ad0c12d66a1955a17d49bac2c71dc4ed9835d97e9c7897f65ba31e65a058d3df396ae6dce51983134550124",
"lightningcss-darwin-arm64@npm:1.27.0": "1cb161978e4e49df43e7701a9f8a5d05f766a8b76a084efaf3c3d3c488076156a48060cbbc257a0fbbd07810e63f8f632af036bb33e2a150c9764aaf61e18e37",
"lightningcss-darwin-arm64@npm:1.30.1": "bbdce4ee14b3952699e6d07c539cf4bd678853bfd974e3107742198dac38dfa6d40c6ea80163a7026aff662dd7d3a462a2bee9a18448c75c788659ceebe2746a",
"lightningcss-darwin-arm64@npm:1.31.1": "52f04cb42e1015595d10b019e2663c8c251a933222ad69cc638418e07b1db4e22772e713ae22b4dd749d1552c2adb4366d5621e7b2406a5e65e410739d33c0c9",
"lightningcss-darwin-x64@npm:1.27.0": "dbdb76a2591f0b3d496d71559c4580b39d4ce406a5300e2b7c953a9fcc21da1c1ef23f7efce6a9214f40dde605d33c0db1693f402bea6d0d9a77a0c95b8de37f",
"lightningcss-darwin-x64@npm:1.30.1": "6b88c182be0de82858983ec374093c2cb13cd58139456e25be215fc55a7a8cbfcd6f7487bee1507fc024988a1f324d7cb26b3f195893d5a69ccaf252dc9094eb",
"lightningcss-darwin-x64@npm:1.31.1": "e56f7064f042a645f39673739061a2c3c38626ed15c072619e33af1f18903bc362c60265eb1ff720c8ae916c95279f822820952ec578987063cca57b8457b5e4",
"lightningcss-freebsd-x64@npm:1.27.0": "59e8ee6a087821c92676b4bae8a440e07d85cd1be24e3507c1efdc778b08df05eb15dcc028dc73b1c341425486e878dd1425399331d6f33d555c64e4cfb60f9d",
"lightningcss-freebsd-x64@npm:1.30.1": "731a96282db6afff3f57e8cbb73f51d06455231868b3b311a772ee11ead9c57538fc217d0956df4f177dbb805fa4fc761734440f6d2bb8965963b21f06bf63c1",
"lightningcss-freebsd-x64@npm:1.31.1": "ff364b2463f78d5a009e887f8d7a6948407c1b7d3b611a63b5c75f4fb8154c657f2a10a886e71922e0b25199b25d53196dcd269a37cba8b6b00447a8ccd4106b",
"lightningcss-linux-arm-gnueabihf@npm:1.27.0": "70f7eb06045a0fc06b5a137c97d9170af446db74fd4f38236eea8414eff23cb963dafcd98edf59aa20b25d311348230a8295498bf46b48dda7040e132dd89a43",
"lightningcss-linux-arm-gnueabihf@npm:1.30.1": "fcf07f54c4d7d056f9b57d39e6df1c6f60c02ef4ebd51eda76056d35d89b1307af8737e44076d2b1f85348d2b1b9c61bf2220c5347389a6d40ad8bb12f34b5cf",
"lightningcss-linux-arm-gnueabihf@npm:1.31.1": "d80af08df62177f7e1acd45362b94d7f842650e0a6fdb8a1fb078d59338e8fb47824b34c60043f67b2da9f26ba462a9e64b4cce89dd502868823bb6a005c1790",
"lightningcss-linux-arm64-gnu@npm:1.27.0": "abbd9c30a17fdeec9705794663a7b6c22ba9ada2aec2e8e3332b5d4e5af8fee67df27a54de62f286c96bf8b33eedfd0d8b013a37fe7a2cc660ed537741483681",
"lightningcss-linux-arm64-gnu@npm:1.30.1": "bc82ce2e96ffab4b0ba1f9adacf63f461c3f6221bcbc955104c05e6e8c2c6ed8863421663e0e4148a682b143868d07190c38e9f990915a80ce9692f963132320",
"lightningcss-linux-arm64-gnu@npm:1.31.1": "8081e72b4e07a45e6c68ca126973461aedadca9d901e6edb604069ee8a222cb1c627910ac05096afdcaeaa624f48a792d4be442400a97a0eead45a0fdcc75975",
"lightningcss-linux-arm64-musl@npm:1.27.0": "c29591ea1b8e96dffc8a8e8fc70fb585d539594727067dc9be6f5c1247516747df6df75cc5ee2557a2d91bbb4edf406a51dc027d5d246b41db34d3ced29a3c09",
"lightningcss-linux-arm64-musl@npm:1.30.1": "2ae25a764b8ed9fcc1977dc1786011e68db23bf3343168fa2d4a9a4bcbb73c7aae258cdcb879d68a3a28e22343705ee435517d3f045e49b15fbb65816d74a91d",
"lightningcss-linux-arm64-musl@npm:1.31.1": "8c84ffb41098e820b0f975383e7665e47f033573ae53070d813c7ea44c4573720b22a068b9e7d422b2c1f3f19829afa68eb31f2c3d966f455a875ef679972a1d",
"lightningcss-linux-x64-gnu@npm:1.27.0": "42b7f03e0bb96f74c25ab28382bbafe80b435068694ee530ae1df5214a193da48e23fee476a920f0d59f499ed414061094001ff2d9011f1ea26619d8aa29242e",
"lightningcss-linux-x64-gnu@npm:1.30.1": "190ac9ba1b9a4bf658a9e5b3c5702546ec779a7a5ccf5a4e06e5d46012ce6cad1842a9b1e717498bc759e103ba7390f42c9b8ba3e67157adec8e7162225633b4",
"lightningcss-linux-x64-gnu@npm:1.31.1": "939b052a7aa740089a657ca48e34059180a9eaa11d02349b16d21ed1a940edb3bdc44f30faafe21a70de57ba227c550fee352f16c552f552c78342283180eb02",
"lightningcss-linux-x64-musl@npm:1.27.0": "dba0afc9ff5215810ca18acf0350fa2147051ec6fea0b7a3df036ed7aeff79311a12f663abff9e26740feb896a64fa9b459c9cedfbd71e2a3c81f16b53610295",
"lightningcss-linux-x64-musl@npm:1.30.1": "fab6ed75d747024fcf46212b9edc7d1daccfbe4e7a06dcd0f9e841c6a023e61e716751747f9e8aecba18495adc9ef6bc20b24616d5c15c87f5dc1ff9ce1fd859",
"lightningcss-linux-x64-musl@npm:1.31.1": "83757ed4a009f5aa7c783afbd1045e5d4aa3867626212dc80435355749675ef8f2466493e14fbace2f09dc84d68b45c278cb6d5f5383f847f0af36d027a8b8bc",
"lightningcss-win32-arm64-msvc@npm:1.27.0": "d70c76fec9238c819a0b39a51246e28c051f1db9083f909c273fa8f4ad7054b00c67bdb5c9d7bb6d86f4653e7c898b8e0b66966f46d75c313123365b18578299",
"lightningcss-win32-arm64-msvc@npm:1.30.1": "2cc285e89f66323ecae5ec41a6b1a57500d74a549fb392829c99708d5a5254d709c0ccd2d8fef4f6c1fc9a55c5bd51eca633fa1f2228563f884545668adc1b17",
"lightningcss-win32-arm64-msvc@npm:1.31.1": "fc3250d2bbaaddd78f88f0c2b1968c22c9b26938bcb7bb960c4f9575cabd14af007f8b828dae3766895b537ec899d19be529a1c87d66833dd891d4dab76742d3",
"lightningcss-win32-x64-msvc@npm:1.27.0": "bdbbc028258831f32f94ce1700cfa967d6db03dee818b98afc33c703ff3275f55c173844ac8cdd91c4acc4da43af49fa076dff9813811a04479f62da324d7bd6",
"lightningcss-win32-x64-msvc@npm:1.30.1": "60bd930e71fab0fbf0250406d4791bf27f0b9c8daf095c8d5fce9f3e120d24753e309eb6fed956043fc6a6cbb6d1da30fb0862acb54fa046b5f9a2e69908b6f9"
"lightningcss-win32-x64-msvc@npm:1.31.1": "509948fd887946a3fffb066b1a321667cde6297f3c2c0aeba829d69e6f05ac457fe9cca4f5a20c88999ef87beb8880751434e8513bd29070ead42afcb387eac5"
}
+4 -4
View File
@@ -69,13 +69,13 @@ let
in
stdenvNoCC.mkDerivation (finalAttrs: {
pname = "linkwarden";
version = "2.13.5";
version = "2.14.0";
src = fetchFromGitHub {
owner = "linkwarden";
repo = "linkwarden";
tag = "v${finalAttrs.version}";
hash = "sha256-S6MjWXiB3eJLy5V1kQsGD1zzce/trIGUwadDlDxZMiE=";
hash = "sha256-mcdLOHGm0UyNDCBA5aheUAfsUONL/Q/KeVtwXTVcsxQ=";
};
patches = [
@@ -94,7 +94,7 @@ stdenvNoCC.mkDerivation (finalAttrs: {
missingHashes = ./missing-hashes.json;
yarnOfflineCache = yarn-berry.fetchYarnBerryDeps {
inherit (finalAttrs) src missingHashes;
hash = "sha256-TCjTG3nbS7uTJA9eVe0imR6+s73yu2FU8Vk3nwRKd4c=";
hash = "sha256-4Qo87kZ0eKHDL4K4yd7rfJwQ5rO1ho2JOvup4nIDMoQ=";
};
nativeBuildInputs = [
@@ -143,7 +143,7 @@ stdenvNoCC.mkDerivation (finalAttrs: {
postBuild = ''
substituteInPlace node_modules/next/dist/server/image-optimizer.js \
--replace-fail 'this.cacheDir = (0, _path.join)(distDir, "cache", "images");' 'this.cacheDir = (0, _path.join)(process.env.LINKWARDEN_CACHE_DIR, "cache", "images");'
--replace-fail "this.cacheDir = (0, _path.join)(distDir, 'cache', 'images');" "this.cacheDir = (0, _path.join)(process.env.LINKWARDEN_CACHE_DIR, 'cache', 'images');"
'';
installPhase = ''
+3 -3
View File
@@ -7,16 +7,16 @@
buildGoModule (finalAttrs: {
pname = "livekit";
version = "1.9.12";
version = "1.10.0";
src = fetchFromGitHub {
owner = "livekit";
repo = "livekit";
rev = "v${finalAttrs.version}";
hash = "sha256-GVhhej3VZY/+UDs/TgRpe1nRMRNbJeAUvGv2GNrQGt4=";
hash = "sha256-R1F0PNntBYpsXIDxyrqN/4NUbV5stLQWqcTLrMn1A3E=";
};
vendorHash = "sha256-WzM1SzWvTeiygrt/TYjXXTG/LO2Wsp28Mf3PZMl0qmY=";
vendorHash = "sha256-vNzQm4pKZQ70YWwASMYetV2Esp106w6IAwp4FOYFsfQ=";
subPackages = [ "cmd/server" ];
+2 -2
View File
@@ -20,13 +20,13 @@
stdenv.mkDerivation (finalAttrs: {
pname = "mako";
version = "1.10.0";
version = "1.11.0";
src = fetchFromGitHub {
owner = "emersion";
repo = "mako";
tag = "v${finalAttrs.version}";
hash = "sha256-O93KOXonfkgIKtlIZP4YlsEgXBcupNifoC/cN+ZAYEM=";
hash = "sha256-opCAkYVhp2zQNEi4NBiFfXsC0DdL0kZtaXS9/epzF10=";
};
strictDeps = true;
+2 -2
View File
@@ -44,7 +44,7 @@ stdenv.mkDerivation {
zip -9 -r mari0.love ./*
strip-nondeterminism --type zip mari0.love
install -Dm444 -t $out/share/games/lovegames/ mari0.love
makeWrapper ${love}/bin/love $out/bin/mari0 \
makeWrapper ${lib.getExe love} $out/bin/mari0 \
--add-flags $out/share/games/lovegames/mari0.love
runHook postInstall
'';
@@ -52,7 +52,7 @@ stdenv.mkDerivation {
meta = {
description = "Crossover between Super Mario Bros. and Portal";
mainProgram = "mari0";
platforms = lib.platforms.linux;
platforms = love.meta.platforms;
license = lib.licenses.mit;
downloadPage = "https://stabyourself.net/mari0/";
};
+1 -2
View File
@@ -9,7 +9,7 @@
ruby_3_3,
writeShellScript,
brotli,
python311,
python3,
# Allow building a fork or custom version of Mastodon:
pname ? "mastodon",
@@ -23,7 +23,6 @@
}:
let
nodejs-slim = nodejs-slim_22;
python3 = python311;
ruby = ruby_3_3;
yarn-berry = yarn-berry_4.override { nodejs = nodejs-slim; };
in
+1 -6
View File
@@ -15,18 +15,13 @@ stdenv.mkDerivation (finalAttrs: {
stripRoot = false;
};
env.NIX_CFLAGS_COMPILE = toString [
# Otherwise, >> related build errors are encountered
"-std=c++11"
];
nativeBuildInputs = [
cmake
];
meta = {
description = "APE codec and decompressor";
platforms = lib.platforms.linux;
platforms = with lib.platforms; linux ++ windows ++ darwin;
mainProgram = "mac";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ doronbehar ];
+2 -2
View File
@@ -12,14 +12,14 @@
}:
python3Packages.buildPythonApplication (finalAttrs: {
pname = "monophony";
version = "4.4.3";
version = "4.4.4";
pyproject = true;
src = fetchFromGitLab {
owner = "zehkira";
repo = "monophony";
tag = "v${finalAttrs.version}";
hash = "sha256-bQ1oGXkeuUEKof/mGvsaqwQQ30NFSed64j7ysb8K9tI=";
hash = "sha256-YG8YHD3wSEN0/9fINXwDwIfY74Wl24Se40j1SLlTWPc=";
};
sourceRoot = "${finalAttrs.src.name}/source";
+2 -2
View File
@@ -8,14 +8,14 @@
}:
buildLua (finalAttrs: {
pname = "modernz";
version = "0.3.0";
version = "0.3.1";
scriptPath = "modernz.lua";
src = fetchFromGitHub {
owner = "Samillion";
repo = "ModernZ";
rev = "v${finalAttrs.version}";
hash = "sha256-9jth8TCAx/cmbAfO8s+1WPpMDuF79gQtVlC4OG2adrA=";
hash = "sha256-xHiKE84qBYa8wnLMhrTnOZPLwdY7ddW7ayIfFz1dIRw=";
};
nativeBuildInputs = [ installFonts ];
+2 -2
View File
@@ -61,7 +61,7 @@ stdenv.mkDerivation {
cp -v mrrescue.love $out/share/games/lovegames/mrrescue.love
makeWrapper ${love}/bin/love $out/bin/mrrescue --add-flags $out/share/games/lovegames/mrrescue.love
makeWrapper ${lib.getExe love} $out/bin/mrrescue --add-flags $out/share/games/lovegames/mrrescue.love
chmod +x $out/bin/mrrescue
mkdir -p $out/share/applications
@@ -72,7 +72,7 @@ stdenv.mkDerivation {
description = "Arcade-style fire fighting game";
mainProgram = "mrrescue";
maintainers = [ ];
platforms = lib.platforms.linux;
platforms = love.meta.platforms;
license = lib.licenses.zlib;
downloadPage = "http://tangramgames.dk/games/mrrescue";
};
+2 -2
View File
@@ -7,13 +7,13 @@
stdenv.mkDerivation (finalAttrs: {
pname = "nextvi";
version = "4.1";
version = "4.2";
src = fetchFromGitHub {
owner = "kyx0r";
repo = "nextvi";
tag = finalAttrs.version;
hash = "sha256-sk4vqMfRDP0H3DESZj57jGVo6Vf2hd9f9OaePFEtdfE=";
hash = "sha256-pkVUCWWVzPwPEG4NGWOoHrXkQpC245kD/Xbj9wmxR3E=";
};
nativeBuildInputs = [ installShellFiles ];
+2 -2
View File
@@ -16,11 +16,11 @@
stdenv.mkDerivation (finalAttrs: {
pname = "nmap";
version = "7.98";
version = "7.99";
src = fetchurl {
url = "https://nmap.org/dist/nmap-${finalAttrs.version}.tar.bz2";
hash = "sha256-zoRzE+qunlyfIXCOQtKre1bH4OuIA3KaMJL1iIbYl+Y=";
hash = "sha256-31Ekkv/RCOU6J6BvJthjW76J4OVpRV3I/+8FjANdUbI=";
};
prePatch = lib.optionalString stdenv.hostPlatform.isDarwin ''
+3 -3
View File
@@ -8,16 +8,16 @@
buildGoModule rec {
pname = "omnictl";
version = "1.5.7";
version = "1.6.1";
src = fetchFromGitHub {
owner = "siderolabs";
repo = "omni";
rev = "v${version}";
hash = "sha256-cTc4ZcFBF5RXg0JoI8W+SGVWOWOP3pbZwvvNgMnCB8Y=";
hash = "sha256-ncffAF1gEsCMeUszgqZExTSYRPkZ6em85S9thM1U3Sc=";
};
vendorHash = "sha256-KMe/gUVA0BSRD0CgEGKnCkK0KR+kDRnPBs1nNcNT7lE=";
vendorHash = "sha256-snrOKwD4xbMTdjP13KLTVVB7ikXG+yHS8QT60/tHZ3I=";
ldflags = [
"-s"
+3 -3
View File
@@ -25,7 +25,7 @@ stdenv.mkDerivation (finalAttrs: {
src = fetchFromGitHub {
owner = "Stabyourself";
repo = "orthorobot";
rev = "v${finalAttrs.version}";
tag = "v${finalAttrs.version}";
sha256 = "1ca6hvd890kxmamsmsfiqzw15ngsvb4lkihjb6kabgmss61a6s5p";
};
@@ -72,7 +72,7 @@ stdenv.mkDerivation (finalAttrs: {
installPhase = ''
runHook preInstall
install -Dm444 -t $out/share/games/lovegames/ orthorobot.love
makeWrapper ${love}/bin/love $out/bin/orthorobot \
makeWrapper ${lib.getExe love} $out/bin/orthorobot \
--add-flags $out/share/games/lovegames/orthorobot.love
runHook postInstall
'';
@@ -80,7 +80,7 @@ stdenv.mkDerivation (finalAttrs: {
meta = {
description = "Recharge the robot";
mainProgram = "orthorobot";
platforms = lib.platforms.linux;
platforms = love.meta.platforms;
license = lib.licenses.wtfpl;
downloadPage = "https://stabyourself.net/orthorobot/";
};
+1 -1
View File
@@ -14,7 +14,7 @@
stdenv.mkDerivation {
pname = "pinball";
version = "0.3.20201218-unstable-2024-11-14";
version = "0.3.20230219-unstable-2024-11-14";
src = fetchFromGitHub {
owner = "adoptware";
+1211 -359
View File
File diff suppressed because it is too large Load Diff
+17 -4
View File
@@ -2,7 +2,7 @@
stdenv,
lib,
fetchFromGitHub,
gradle,
gradle_9,
temurin-bin-21,
kotlin,
nix-update-script,
@@ -12,18 +12,19 @@
}:
let
jdk = temurin-bin-21;
gradle = gradle_9;
gradleOverlay = gradle.override { java = jdk; };
kotlinOverlay = kotlin.override { jre = jdk; };
in
stdenv.mkDerivation (finalAttrs: {
pname = "pkl";
version = "0.29.1";
version = "0.31.1";
src = fetchFromGitHub {
owner = "apple";
repo = "pkl";
tag = finalAttrs.version;
hash = "sha256-vel4Il/muHd4wqV5tfMPwBHoxgei8vPcnk2kS2/XG3I=";
hash = "sha256-6oY1F1I6xDq8TzYCOGi2Mc+nm/mxc13G/rvjJx4twLQ=";
leaveDotGit = true;
postFetch = ''
pushd $out
@@ -37,6 +38,7 @@ stdenv.mkDerivation (finalAttrs: {
(replaceVars ./fix_kotlin_classpath.patch { gradle = gradle.unwrapped; })
./disable_gradle_codegen_tests.patch
./disable_bad_tests.patch
./repair_org.msgpack-msgpack-core_lockfiles.patch
];
nativeBuildInputs = [
@@ -52,11 +54,22 @@ stdenv.mkDerivation (finalAttrs: {
data = ./deps.json;
};
doCheck = !(stdenv.hostPlatform.isDarwin);
# On aarch64-darwin, no artifact for idea:ideaIC:2025.2.3 is available
doCheck = !(stdenv.hostPlatform.isDarwin) && !(stdenv.hostPlatform.isAarch64);
# build only the cli binary to work around this issue:
# "Failed to query the value of task ':pkl-internal-intellij-plugin:initializeIntellijPlatformPlugin' property 'latestPluginVersion'."
gradleBuildTask = "pkl-cli:build";
gradleFlags = [
"-x"
"spotlessCheck"
# disable the checks to work around this issue:
# Could not determine the dependencies of task ':pkl-cli:check'.
# > Could not create task ':pkl-cli:testStartJavaExecutableJdk17'.
# > Cannot find a Java installation on your machine (Linux 6.18.13 amd64) matching: {languageVersion=17, vendor=any vendor, implementation=vendor-specific, nativeImageCapable=false}. Toolchain auto-provisioning is not enabled.
"-x"
"check"
"-DreleaseBuild=true"
"-Dorg.gradle.java.home=${jdk}"
"-Porg.gradle.java.installations.auto-download=false"
@@ -0,0 +1,52 @@
From daede858a1568224b06033b256300c8f86db973e Mon Sep 17 00:00:00 2001
From: Matei Dibu <contact@mateidibu.dev>
Date: Fri, 27 Feb 2026 14:13:40 +0200
Subject: [PATCH] fix: repair org.msgpack:msgpack-core lockfiles
---
pkl-commons-test/gradle.lockfile | 2 +-
pkl-config-java/gradle.lockfile | 2 +-
pkl-config-kotlin/gradle.lockfile | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/pkl-commons-test/gradle.lockfile b/pkl-commons-test/gradle.lockfile
index a1c9514e..a9021ca2 100644
--- a/pkl-commons-test/gradle.lockfile
+++ b/pkl-commons-test/gradle.lockfile
@@ -47,6 +47,6 @@ org.junit.platform:junit-platform-commons:1.14.0=apiDependenciesMetadata,compile
org.junit.platform:junit-platform-engine:1.14.0=apiDependenciesMetadata,compileClasspath,implementationDependenciesMetadata,runtimeClasspath,testCompileClasspath,testImplementationDependenciesMetadata,testRuntimeClasspath
org.junit.platform:junit-platform-launcher:1.14.0=testRuntimeClasspath
org.junit:junit-bom:5.14.0=apiDependenciesMetadata,compileClasspath,implementationDependenciesMetadata,runtimeClasspath,testCompileClasspath,testImplementationDependenciesMetadata,testRuntimeClasspath
-org.msgpack:msgpack-core:0.9.8=compileClasspath
+org.msgpack:msgpack-core:0.9.8=compileClasspath,implementationDependenciesMetadata,runtimeClasspath,testCompileClasspath,testImplementationDependenciesMetadata,testRuntimeClasspath
org.opentest4j:opentest4j:1.3.0=apiDependenciesMetadata,compileClasspath,implementationDependenciesMetadata,runtimeClasspath,testCompileClasspath,testImplementationDependenciesMetadata,testRuntimeClasspath
empty=annotationProcessor,compileOnlyDependenciesMetadata,intransitiveDependenciesMetadata,kotlinCompilerPluginClasspath,kotlinNativeCompilerPluginClasspath,kotlinScriptDefExtensions,sourcesJar,testAnnotationProcessor,testApiDependenciesMetadata,testCompileOnlyDependenciesMetadata,testIntransitiveDependenciesMetadata,testKotlinScriptDefExtensions
diff --git a/pkl-config-java/gradle.lockfile b/pkl-config-java/gradle.lockfile
index fa2fbd37..ebf64def 100644
--- a/pkl-config-java/gradle.lockfile
+++ b/pkl-config-java/gradle.lockfile
@@ -79,7 +79,7 @@ org.junit.platform:junit-platform-commons:1.14.0=testCompileClasspath,testImplem
org.junit.platform:junit-platform-engine:1.14.0=testRuntimeClasspath
org.junit.platform:junit-platform-launcher:1.14.0=testRuntimeClasspath
org.junit:junit-bom:5.14.0=testCompileClasspath,testImplementationDependenciesMetadata,testRuntimeClasspath
-org.msgpack:msgpack-core:0.9.8=compileClasspath,pklCodegenJava,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
+org.msgpack:msgpack-core:0.9.8=compileClasspath,implementationDependenciesMetadata,pklCodegenJava,runtimeClasspath,testCompileClasspath,testImplementationDependenciesMetadata,testRuntimeClasspath
org.opentest4j:opentest4j:1.3.0=testCompileClasspath,testImplementationDependenciesMetadata,testRuntimeClasspath
org.organicdesign:Paguro:3.10.3=pklCodegenJava,runtimeClasspath,testRuntimeClasspath
org.snakeyaml:snakeyaml-engine:2.10=pklCodegenJava,runtimeClasspath,testRuntimeClasspath
diff --git a/pkl-config-kotlin/gradle.lockfile b/pkl-config-kotlin/gradle.lockfile
index 2bdeb136..0fd4d516 100644
--- a/pkl-config-kotlin/gradle.lockfile
+++ b/pkl-config-kotlin/gradle.lockfile
@@ -78,7 +78,7 @@ org.junit.platform:junit-platform-commons:1.14.0=testCompileClasspath,testImplem
org.junit.platform:junit-platform-engine:1.14.0=testRuntimeClasspath
org.junit.platform:junit-platform-launcher:1.14.0=testRuntimeClasspath
org.junit:junit-bom:5.14.0=testCompileClasspath,testImplementationDependenciesMetadata,testRuntimeClasspath
-org.msgpack:msgpack-core:0.9.8=compileClasspath,pklCodegenKotlin,pklConfigJava,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
+org.msgpack:msgpack-core:0.9.8=compileClasspath,implementationDependenciesMetadata,pklCodegenKotlin,runtimeClasspath,testCompileClasspath,testImplementationDependenciesMetadata,testRuntimeClasspath
org.opentest4j:opentest4j:1.3.0=testCompileClasspath,testImplementationDependenciesMetadata,testRuntimeClasspath
org.organicdesign:Paguro:3.10.3=pklCodegenKotlin,testRuntimeClasspath
org.snakeyaml:snakeyaml-engine:2.10=pklCodegenKotlin,testRuntimeClasspath
--
2.53.0
+44 -17
View File
@@ -3,52 +3,79 @@
fetchFromCodeberg,
pkg-config,
python3,
sphinxHook,
}:
python3.pkgs.buildPythonApplication (finalAttrs: {
pname = "poezio";
version = "0.14";
version = "0.16";
pyproject = true;
src = fetchFromCodeberg {
owner = "poezio";
repo = "poezio";
rev = "v${finalAttrs.version}";
hash = "sha256-sk+8r+a0CcoB0RidqnE7hJUgt/xvN/MCJMkxiquvdJc=";
hash = "sha256-bpudgf9oZ+7w7izAuWYKFVO9CIHraHaGvRKLDuSIF7c=";
};
nativeBuildInputs = [ pkg-config ];
build-system = [ python3.pkgs.setuptools ];
build-system = with python3.pkgs; [
setuptools
sphinxHook
aiohttp
];
dependencies = with python3.pkgs; [
aiodns
cffi
mpd2
potr
pyasn1
pyasn1-modules
pycares
pyinotify
dependency-groups
setuptools
slixmpp
typing-extensions
];
optional-dependencies = {
plugins = with python3.pkgs; [
pyinotify
aiohttp
pygments
qrcode
pillow
python-musicpd
];
};
preBuild = ''
${python3.pythonOnBuildForHost.interpreter} setup.py build_ext --inplace
'';
nativeCheckInputs = with python3.pkgs; [
pytestCheckHook
];
outputs = [
"out"
"man"
];
sphinxBuilders = [
"man"
];
pythonImportsCheck = [
"poezio"
];
# remove poezio directory to prevent pytest import confusion
preCheck = ''
rm -r poezio
'';
meta = {
description = "Free console XMPP client";
longDescription = ''
Its goal is to let you connect very easily (no account creation needed) to
the network and join various chatrooms, immediately. It tries to look like
the most famous IRC clients (weechat, irssi, etc). Many commands are
identical and you won't be lost if you already know these clients.
Configuration can be made in a configuration file or directly from
the client.
You'll find the light, fast, geeky and anonymous spirit of IRC while using
a powerful, standard and open protocol.
'';
homepage = "https://poez.io";
changelog = "https://codeberg.org/poezio/poezio/src/tag/v${finalAttrs.version}/CHANGELOG";
license = lib.licenses.zlib;
+2 -2
View File
@@ -13,14 +13,14 @@
stdenv.mkDerivation (finalAttrs: {
pname = "qxmpp";
version = "1.14.3";
version = "1.14.4";
src = fetchFromGitLab {
domain = "invent.kde.org";
owner = "libraries";
repo = "qxmpp";
tag = "v${finalAttrs.version}";
hash = "sha256-vrTPlrT+sLg4coQ0EdYLCS36LlkruJqQPhxK0dYlLL4=";
hash = "sha256-ltk707viMBDbi7LID0jdLylWkd6Z7Iy6bpORXzODjYc=";
};
nativeBuildInputs = [
+3 -3
View File
@@ -6,13 +6,13 @@
buildGoModule (finalAttrs: {
pname = "rancher";
version = "2.13.3";
version = "2.13.4";
src = fetchFromGitHub {
owner = "rancher";
repo = "cli";
tag = "v${finalAttrs.version}";
hash = "sha256-/bax1qW79DelgeOpp6PuQ7jNsB/Z82T7vxmlO5DmxtQ=";
hash = "sha256-3/8xGp8jmmfvblikNSNUxXd6w1PJnvgraGthEmOesXI=";
};
env.CGO_ENABLED = 0;
@@ -25,7 +25,7 @@ buildGoModule (finalAttrs: {
"-static"
];
vendorHash = "sha256-9PpU28Uy/cQgQZT2MSA/kNh2+PFSDcGxkSWpBHUpKCg=";
vendorHash = "sha256-nEmnbWhDQg7/KHcRYQvrxzFRSHmbOwpEq2H44Pizmuk=";
postInstall = ''
mv $out/bin/cli $out/bin/rancher
+2 -2
View File
@@ -11,7 +11,7 @@
python3.pkgs.buildPythonApplication (finalAttrs: {
pname = "satellite";
version = "0.9.1";
version = "0.9.2";
pyproject = true;
@@ -19,7 +19,7 @@ python3.pkgs.buildPythonApplication (finalAttrs: {
owner = "tpikonen";
repo = "satellite";
tag = finalAttrs.version;
hash = "sha256-E/OKdVB+JDP/01ydEgA/B6+GMiVYB4jlPI70TW8HBDU=";
hash = "sha256-DubLxsqJsvCbfFD9jNkKHGd2Ur/bT7Ea5bHLijciwtI=";
};
nativeBuildInputs = [
@@ -1,8 +1,8 @@
{
lib,
pnpm_9,
fetchPnpmDeps,
pnpmConfigHook,
pnpm_10,
fetchFromGitHub,
stdenv,
makeWrapper,
@@ -16,24 +16,24 @@
let
nodejs = nodejs_22;
pnpm = pnpm_9.override { inherit nodejs; };
pnpm = pnpm_10.override { inherit nodejs; };
in
stdenv.mkDerivation (finalAttrs: {
pname = "jellyseerr";
version = "2.7.3";
pname = "seerr";
version = "3.1.0";
src = fetchFromGitHub {
owner = "Fallenbagel";
repo = "jellyseerr";
owner = "seerr-team";
repo = "seerr";
tag = "v${finalAttrs.version}";
hash = "sha256-a3lhQ33Zb+vSu1sQjuqO3bITiQEIOVyFTecmJAhJROU=";
hash = "sha256-POmxXuuxATWyNLnKKNO7W3BZ1WL0t0/0IoOpzqKs4oQ=";
};
pnpmDeps = fetchPnpmDeps {
inherit (finalAttrs) pname version src;
inherit pnpm;
fetcherVersion = 3;
hash = "sha256-kCM6oNfBlVsjItzBDxSbeLu0+53I5XzxcerpCTEvZ0M=";
hash = "sha256-p45B6hp0BsSCAeOL7miVzVMG84UW24uUf2OpbH+xQuw=";
};
buildInputs = [ sqlite ];
@@ -71,34 +71,32 @@ stdenv.mkDerivation (finalAttrs: {
installPhase = ''
runHook preInstall
mkdir -p $out/share
cp -r -t $out/share .next node_modules dist public package.json jellyseerr-api.yml
cp -r -t $out/share .next node_modules dist public package.json seerr-api.yml
runHook postInstall
'';
postInstall = ''
mkdir -p $out/bin
makeWrapper '${nodejs}/bin/node' "$out/bin/jellyseerr" \
makeWrapper '${nodejs}/bin/node' "$out/bin/seerr" \
--add-flags "$out/share/dist/index.js" \
--chdir "$out/share" \
--set NODE_ENV production
'';
passthru = {
inherit (nixosTests) jellyseerr;
inherit (nixosTests) seerr;
updateScript = nix-update-script { };
};
meta = {
description = "Fork of overseerr for jellyfin support";
homepage = "https://github.com/Fallenbagel/jellyseerr";
longDescription = ''
Jellyseerr is a free and open source software application for managing
requests for your media library. It is a a fork of Overseerr built to
bring support for Jellyfin & Emby media servers!
'';
description = "Open-source media request and discovery manager for Jellyfin, Plex, and Emby";
homepage = "https://github.com/seerr-team/seerr";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.camillemndn ];
maintainers = with lib.maintainers; [
camillemndn
fallenbagel
];
platforms = lib.platforms.linux;
mainProgram = "jellyseerr";
mainProgram = "seerr";
};
})
+9 -8
View File
@@ -13,19 +13,19 @@ stdenv.mkDerivation rec {
version = "1.0d";
src = fetchurl {
url = "https://github.com/SimonLarsen/${pname}/releases/download/v${version}/${pname}-${version}.love";
sha256 = "sha256-1bFjhN7jL/PMYMJH1ete6uyHTYsTGgoP60sf/sJTLlU=";
url = "https://github.com/SimonLarsen/sienna/releases/download/v${version}/sienna-${version}.love";
hash = "sha256-1bFjhN7jL/PMYMJH1ete6uyHTYsTGgoP60sf/sJTLlU=";
};
icon = fetchurl {
url = "http://tangramgames.dk/img/thumb/sienna.png";
sha256 = "12q2rhk39dmb6ir50zafn8dylaad5gns8z3y21mfjabc5l5g02nn";
hash = "sha256-1grwCi1sKelqEH58pO0rTSnqG7JOfVByNKu2NCbMAos=";
};
desktopItems = [
(makeDesktopItem {
name = "sienna";
exec = pname;
exec = "sienna";
icon = icon;
comment = "Fast-paced one button platformer";
desktopName = "Sienna";
@@ -46,9 +46,9 @@ stdenv.mkDerivation rec {
mkdir -p $out/bin
mkdir -p $out/share/games/lovegames
cp -v $src $out/share/games/lovegames/${pname}.love
cp -v $src $out/share/games/lovegames/sienna.love
makeWrapper ${love}/bin/love $out/bin/${pname} --add-flags $out/share/games/lovegames/${pname}.love
makeWrapper ${lib.getExe love} $out/bin/sienna --add-flags $out/share/games/lovegames/sienna.love
runHook postInstall
'';
@@ -56,8 +56,9 @@ stdenv.mkDerivation rec {
description = "Fast-paced one button platformer";
mainProgram = "sienna";
homepage = "https://tangramgames.dk/games/sienna";
platforms = lib.platforms.linux;
license = lib.licenses.free;
platforms = love.meta.platforms;
license = lib.licenses.zlib;
maintainers = [ ];
};
}
+2 -2
View File
@@ -10,13 +10,13 @@
stdenv.mkDerivation (finalAttrs: {
pname = "snac2";
version = "2.90";
version = "2.91";
src = fetchFromCodeberg {
owner = "grunfink";
repo = "snac2";
tag = finalAttrs.version;
hash = "sha256-DhlBuudyO3IBj3X/0aeM7kPMLrVVBgcv19HXhddERY4=";
hash = "sha256-v7MKrGEvb4EyyEkRu7wd/uh4IJgfF0Uk6l0kS93NyHM=";
};
buildInputs = [
+3 -3
View File
@@ -17,13 +17,13 @@
buildGoModule (finalAttrs: {
pname = "sointu";
version = "0.5.0";
version = "0.6.0";
src = fetchFromGitHub {
owner = "vsariola";
repo = "sointu";
tag = "v${finalAttrs.version}";
hash = "sha256-xHKD+zArsdQVffwbbSOOdzC6o5sxpez8VLAwIzV5X4E=";
hash = "sha256-r/yNjod1yOT+CaOcyxhL0GuHK108CV2arVoqWE0kzco=";
};
nativeBuildInputs = [
@@ -43,7 +43,7 @@ buildGoModule (finalAttrs: {
];
proxyVendor = true;
vendorHash = "sha256-gLDLKqu6k7/nwv6xHUE6MIYrbQFfVFAuUiMbLptcE5k=";
vendorHash = "sha256-GFLfUd8Y4TFfdej/zy3VkCUwme2S2uAP39TcfZEv1Bg=";
subPackages = [
"cmd/sointu-track"
+3 -3
View File
@@ -15,16 +15,16 @@
}:
rustPlatform.buildRustPackage (finalAttrs: {
pname = "spacetimedb";
version = "2.0.5";
version = "2.1.0";
src = fetchFromGitHub {
owner = "clockworklabs";
repo = "spacetimedb";
tag = "v${finalAttrs.version}";
hash = "sha256-oTxwEt9TNAjzfhr9ivdABiQH8iPhnx41GAriglQstlA=";
hash = "sha256-wSJ1co0IpnNva6G9u5oZAjLIw5/bNxOvng2zp/YUFus=";
};
cargoHash = "sha256-24h/JXhF6SZqMJRP9cxOYfh1NHKCIxRYH2xoSpwy0jA=";
cargoHash = "sha256-O1Uug4Xny6AQnybQ978chz+2auY99MUI0o66r44gezI=";
nativeBuildInputs = [
pkg-config
@@ -6,13 +6,13 @@
}:
stdenvNoCC.mkDerivation (finalAttrs: {
pname = "stevenblack-blocklist";
version = "3.16.67";
version = "3.16.69";
src = fetchFromGitHub {
owner = "StevenBlack";
repo = "hosts";
tag = finalAttrs.version;
hash = "sha256-oNmcZEOUg1AuCZ3jFtrfO+dOJ6DhwMMg/rgJ8fn7+bg=";
hash = "sha256-OSN3K2lSag5aA58UmfI1JMvmksuEVwlT7TOeBOsEmX8=";
};
outputs = [
+3 -3
View File
@@ -17,7 +17,7 @@ stdenvNoCC.mkDerivation rec {
src = fetchFromGitLab {
owner = "stone-kingdoms";
repo = "stone-kingdoms";
rev = version;
tag = version;
hash = "sha256-W2hzJg22O857Kh7CJVVHV5qu8QKjXCwW3hmgKBc0n2g=";
};
@@ -46,7 +46,7 @@ stdenvNoCC.mkDerivation rec {
strip-nondeterminism --type zip stone-kingdoms.love
install -Dm755 -t $out/share/games/lovegames/ stone-kingdoms.love
install -Dm644 assets/other/icon.png $out/share/icons/hicolor/256x256/apps/stone-kingdoms.png
makeWrapper ${love}/bin/love $out/bin/stone-kingdoms \
makeWrapper ${lib.getExe love} $out/bin/stone-kingdoms \
--add-flags $out/share/games/lovegames/stone-kingdoms.love
runHook postInstall
'';
@@ -54,7 +54,7 @@ stdenvNoCC.mkDerivation rec {
meta = {
description = "Real-time strategy game made with LÖVE based on the original Stronghold by Firefly studios";
homepage = "https://gitlab.com/stone-kingdoms/stone-kingdoms";
platforms = lib.platforms.linux;
platforms = love.meta.platforms;
license = with lib.licenses; [
asl20 # engine
unfree # game assets
+1 -1
View File
@@ -26,7 +26,7 @@ stdenv.mkDerivation rec {
buildPhase = ''
runHook preBuild
gcc -shared cold_clear_wrapper.c -lcold_clear -lluajit-${luajit.luaversion} -o CCLoader.so
$CC -shared cold_clear_wrapper.c -o CCLoader.so -lcold_clear -lluajit-${luajit.luaversion}
runHook postBuild
'';
+2 -1
View File
@@ -52,7 +52,7 @@ stdenv.mkDerivation rec {
cp $src $out/share/games/lovegames/techmino.love
mkdir -p $out/bin
makeWrapper ${love}/bin/love $out/bin/techmino \
makeWrapper ${lib.getExe love} $out/bin/techmino \
--add-flags $out/share/games/lovegames/techmino.love \
--suffix LUA_CPATH : ${ccloader}/lib/lua/${luajit.luaversion}/CCLoader.so
@@ -76,6 +76,7 @@ stdenv.mkDerivation rec {
downloadPage = "https://github.com/26F-Studio/Techmino/releases";
homepage = "https://github.com/26F-Studio/Techmino/";
license = lib.licenses.lgpl3;
platforms = love.meta.platforms;
mainProgram = "techmino";
maintainers = with lib.maintainers; [ chayleaf ];
};
+2 -2
View File
@@ -7,12 +7,12 @@
python3Packages.buildPythonApplication (finalAttrs: {
pname = "tmuxp";
version = "1.64.0";
version = "1.67.0";
pyproject = true;
src = fetchPypi {
inherit (finalAttrs) pname version;
hash = "sha256-jx5duGqxgXqDHfc74mZ6YZlxdW16bYJ3KD5hRReJmCw=";
hash = "sha256-mQcg2fpab0dYeQrswgHS0prwrZrYxHtYrCCssOipTxI=";
};
build-system = with python3Packages; [
+3 -3
View File
@@ -8,16 +8,16 @@
buildGoModule (finalAttrs: {
pname = "vultr-cli";
version = "3.8.0";
version = "3.9.2";
src = fetchFromGitHub {
owner = "vultr";
repo = "vultr-cli";
rev = "v${finalAttrs.version}";
hash = "sha256-6uVMy7FogacaJOtedly5kg7Gt55WSIhPLF2zGbM3LbE=";
hash = "sha256-czyLpc9pWFjqQkS08y6/MEfnUV+blFzPVpMdnn/15ns=";
};
vendorHash = "sha256-YPAlOC+8hxjtc4q4VQ+f0C/CpO1nGvEvuR2FOA34b08=";
vendorHash = "sha256-75hBUfHUYAUhqh22EHRKjwv773h34loyFLw1JKy39W0=";
nativeBuildInputs = [ installShellFiles ];
+2 -2
View File
@@ -39,7 +39,7 @@ in
stdenv.mkDerivation (finalAttrs: {
pname = "wesnoth${suffix}";
version = if enableDevel then "1.19.21" else "1.18.6";
version = if enableDevel then "1.19.22" else "1.18.6";
src = fetchFromGitHub {
owner = "wesnoth";
@@ -47,7 +47,7 @@ stdenv.mkDerivation (finalAttrs: {
tag = finalAttrs.version;
hash =
if enableDevel then
"sha256-6KCk5zVw2OBGJijiJbqJf3n40M0ASy8+7yYtbvgP+w0="
"sha256-bqISxp20uiaqGwPshwe/xYwTnKC6K/FNYLE618L2IC4="
else
"sha256-y2ceN7rX8j+pNlaajw32ZxwFrUxqAuILADZvum03NhU=";
};
+3 -3
View File
@@ -10,16 +10,16 @@
buildGoModule (finalAttrs: {
pname = "whosthere";
version = "0.6.1";
version = "0.7.0";
src = fetchFromGitHub {
owner = "ramonvermeulen";
repo = "whosthere";
tag = "v${finalAttrs.version}";
hash = "sha256-ZvbAwOrVg77H0WifK7Rmp4ArRbLJ/POvo+E9HCEbWYM=";
hash = "sha256-jJYjnpHt9Sk58WCmMU51RWFqwRrwCinMwbKaUajacKw=";
};
vendorHash = "sha256-N/yfy1IbxD16WpBSZBurDZWasibef/wxF+/05yEbHuA=";
vendorHash = "sha256-sNx1Ej8vh/Lw4wpitWQdLZ2LM8K6JgM/snSZRw9RN94=";
nativeBuildInputs = [
installShellFiles
@@ -8,13 +8,13 @@
}:
stdenvNoCC.mkDerivation (finalAttrs: {
pname = "xdg-terminal-exec";
version = "0.14.1";
version = "0.14.2";
src = fetchFromGitHub {
owner = "Vladimir-csp";
repo = "xdg-terminal-exec";
rev = "v${finalAttrs.version}";
hash = "sha256-RgyXdrJEiPXOHpnUUuu7UVNC+RE36WgyXuuDgA8H1EQ=";
hash = "sha256-dS0uvh9xGv5Sp8zd57Sb6VB1OAjgl5S9MQyHKmz6ae0=";
};
strictDeps = true;
+2 -2
View File
@@ -17,13 +17,13 @@
}:
stdenv.mkDerivation (finalAttrs: {
pname = "xdp-tools";
version = "1.6.2";
version = "1.6.3";
src = fetchFromGitHub {
owner = "xdp-project";
repo = "xdp-tools";
rev = "v${finalAttrs.version}";
hash = "sha256-CtXJAYR4T/4NyJlgvdc1E9JBIVWY7lN5gtyTUfmAkp8=";
hash = "sha256-wLSLDgACl6a6gQLvRiRR9HQFRMrGWYZAa5CcdzECExE=";
};
outputs = [
+3
View File
@@ -76,6 +76,9 @@ let
glibc
# required by at least https://github.com/zed-industries/package-version-server
openssl
# required by at least the Codex CLI agent
libcap
zlib
])
++ additionalPkgs pkgs;
+3 -3
View File
@@ -8,16 +8,16 @@
buildGoModule (finalAttrs: {
pname = "zvm";
version = "0.8.11";
version = "0.8.14";
src = fetchFromGitHub {
owner = "tristanisham";
repo = "zvm";
tag = "v${finalAttrs.version}";
hash = "sha256-RMXF69zqqNK3tifbeDM7dxkiHMws7n+PeeHvCUK7/OU=";
hash = "sha256-MAE7zs60DFIicYRtMhstzsOiS2flVv+dyPJVmcyAEio=";
};
vendorHash = "sha256-dM9FiUucSBkk8L93HfzoHQ1EyyRmAZjfedvOyRBDFBA=";
vendorHash = "sha256-29hFuQnLPdLkAG4x5QWqXqBIGtppi/rj3OuTfMBgTAI=";
doInstallCheck = true;
nativeInstallCheckInputs = [ versionCheckHook ];
@@ -172,4 +172,12 @@ in
version = "0.19.3";
hash = "sha256-J+wSVUtuizaCyCn523chFbE8VtbPjyu5XYv5eLT+GM0=";
};
wlroots_0_20 = generic {
version = "0.20.0";
hash = "sha256-hVJlJiJK6+9RkgkmQzUzb8ypVMqsNhbQG6KfeCvxtb0=";
extraBuildInputs = [
lcms2
];
};
}
@@ -7,11 +7,11 @@
buildDunePackage rec {
pname = "ocaml-version";
version = "4.0.3";
version = "4.0.4";
src = fetchurl {
url = "https://github.com/ocurrent/ocaml-version/releases/download/v${version}/ocaml-version-${version}.tbz";
hash = "sha256-GM5e7fTKWhx6tSJ9xfNdW2fy8wYWhmbf3uGvqGKQm7M=";
hash = "sha256-6sviBLiEjcCtLcnk74vGy4ZTALVd1Rd5INUzAzn+HO4=";
};
checkInputs = [ alcotest ];
@@ -18,14 +18,14 @@
buildPythonPackage rec {
pname = "bork";
version = "10.0.3";
version = "11.0.0";
pyproject = true;
src = fetchFromGitHub {
owner = "duckinator";
repo = "bork";
tag = "v${version}";
hash = "sha256-/euPRR6TRCAAl42CHePfUr+9Kh271iLjTayUR1S/FBg=";
hash = "sha256-VashMByAdoRa/uWBGgtsJtd4LcG8hwq/naDXxW+nSg8=";
};
build-system = [
@@ -30,14 +30,14 @@
buildPythonPackage rec {
pname = "deepdiff";
version = "8.6.1";
version = "8.6.2";
pyproject = true;
src = fetchFromGitHub {
owner = "seperman";
repo = "deepdiff";
tag = version;
hash = "sha256-1DB1OgIS/TSMd+Pqd2vvW+qwM/b5+Dy3qStlg+asidE=";
hash = "sha256-/XRPP8O2ykoXwOZ2ou/7Yoa1x7t45dCx6G3aq30o3Wc=";
};
build-system = [
@@ -80,6 +80,8 @@ buildPythonPackage rec {
++ lib.optionals stdenv.hostPlatform.isDarwin [
# Times out on darwin in Hydra
"test_repeated_timer"
# Requires too much RAM and fails only on Darwin from some reason.
"test_restricted_unpickler_memory_exhaustion_cve"
];
pythonImportsCheck = [ "deepdiff" ];
@@ -0,0 +1,56 @@
{
buildPythonPackage,
django,
fetchFromGitHub,
gnupg,
lib,
psycopg2,
pytestCheckHook,
python-dotenv,
python-gnupg,
testfixtures,
writableTmpDirAsHomeHook,
hatchling,
}:
buildPythonPackage (finalAttrs: {
pname = "django-dbbackup";
version = "5.2.0";
pyproject = true;
src = fetchFromGitHub {
owner = "Archmonger";
repo = "django-dbbackup";
tag = finalAttrs.version;
hash = "sha256-fl4ezDLHO6KwLfX5KMK9uMonONJCCDLyZUj9KMRZsGc=";
};
build-system = [ hatchling ];
dependencies = [
django
];
preCheck = ''
export DJANGO_SETTINGS_MODULE=tests.settings
'';
pythonImportsCheck = [ "dbbackup" ];
nativeCheckInputs = [
gnupg
python-gnupg
psycopg2
pytestCheckHook
python-dotenv
testfixtures
writableTmpDirAsHomeHook
];
meta = {
description = "Management commands to help backup and restore your project database and media files";
homepage = "https://github.com/Archmonger/django-dbbackup";
changelog = "https://github.com/Archmonger/django-dbbackup/blob/${finalAttrs.src.tag}/CHANGELOG.md";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ kurogeek ];
};
})
@@ -31,7 +31,7 @@
buildPythonPackage rec {
pname = "itables";
version = "2.7.1";
version = "2.7.3";
# itables has 4 different node packages, each with their own
# package-lock.json, and partially depending on each other.
@@ -39,7 +39,7 @@ buildPythonPackage rec {
# the source tarball from pypi, which includes the javascript bundle already.
src = fetchPypi {
inherit pname version;
hash = "sha256-Z/N153Pd90jaLsIlD9IaJCqqY4NbTr6BaEC+Abz6mOg=";
hash = "sha256-epaA2iCqZJWGgmXTl/GozAPY/bxZJ2DT3bELTWCB/3M=";
};
pyproject = true;
@@ -1,31 +1,27 @@
{
lib,
buildPythonPackage,
fetchurl,
fetchPypi,
fetchFromGitHub,
setuptools,
pybind11,
requests,
rich,
pillow,
psutil,
rich,
}:
let
test-image = fetchurl {
name = "test-image.jpg";
url = "https://unsplash.com/photos/u9tAl8WR3DI/download";
hash = "sha256-shGNdgOOydgGBtl/JCbTJ0AYgl+2xWvCgHBL+bEoTaE=";
};
in
buildPythonPackage (finalAttrs: {
pname = "materialyoucolor";
version = "2.0.10";
version = "3.0.2";
pyproject = true;
# PyPI sources contain additional vendored sources
src = fetchPypi {
inherit (finalAttrs) pname version;
hash = "sha256-MbTUB7mk/UtUswVZsNAxP21tofnRm3VUbtZdpSZx6nY=";
src = fetchFromGitHub {
owner = "T-Dynamos";
repo = "materialyoucolor-python";
tag = "v${finalAttrs.version}";
hash = "sha256-CCpYrNp79gdnj5TYcQ7fEiLsFW/kbuZ+3/cHZF4Bv/s=";
};
build-system = [
@@ -33,15 +29,23 @@ buildPythonPackage (finalAttrs: {
pybind11
];
nativeCheckInputs = [
requests
rich
dependencies = [
pillow
];
nativeCheckInputs = [
psutil
rich
];
checkPhase = ''
runHook preCheck
python tests/test_all.py ${test-image} 1
# test script taken from .github/workflows/cibuildwheel.yml
python -c "from PIL import Image; Image.new('RGB', (128, 128), (70, 120, 180)).save('test_image.jpg')"
python tests/test_all.py --image test_image.jpg --quality 1 --method pillow --tonal-spot
python tests/test_all.py --image test_image.jpg --quality 1 --method cpp --tonal-spot
runHook postCheck
'';
@@ -13,7 +13,6 @@
boto3,
dateparser,
dnspython,
elastic-transport,
elasticsearch-dsl,
elasticsearch,
expiringdict,
@@ -32,8 +31,10 @@
opensearch-py,
publicsuffixlist,
pygelf,
pyyaml,
requests,
tqdm,
urllib3,
xmltodict,
# test
@@ -48,16 +49,21 @@ let
in
buildPythonPackage rec {
pname = "parsedmarc";
version = "9.0.10";
version = "9.5.4";
pyproject = true;
src = fetchFromGitHub {
owner = "domainaware";
repo = "parsedmarc";
tag = version;
hash = "sha256-FrLqR9YTZ75YQDWKdFCVTYiY3wTj0OlKSvMukDwDiHs=";
hash = "sha256-Di4ykujzBow1woG0UsH6S1eDu+nuQ8/r6RXcMKLdDF4=";
};
postPatch = ''
substituteInPlace pyproject.toml \
--replace-fail 'requires_python = ">=3.10,<3.15"' ""
'';
build-system = [
hatchling
];
@@ -73,7 +79,6 @@ buildPythonPackage rec {
boto3
dateparser
dnspython
elastic-transport
elasticsearch
elasticsearch-dsl
expiringdict
@@ -91,8 +96,10 @@ buildPythonPackage rec {
opensearch-py
publicsuffixlist
pygelf
pyyaml
requests
tqdm
urllib3
xmltodict
];
@@ -23,14 +23,14 @@
buildPythonPackage rec {
pname = "python-telegram-bot";
version = "22.6";
version = "22.7";
pyproject = true;
src = fetchFromGitHub {
owner = "python-telegram-bot";
repo = "python-telegram-bot";
tag = "v${version}";
hash = "sha256-B7tG70Nzt7HKFD1n1Aq5DGGrcTyb4Df9LF31DGN4KQc=";
hash = "sha256-+mbVN1XFChUMYReHMjQd1tx5gYpP1CWGNtuZCoY9TMo=";
};
build-system = [
@@ -1,19 +1,21 @@
{
lib,
buildPythonPackage,
fetchPypi,
fetchFromGitHub,
hatchling,
pytestCheckHook,
}:
buildPythonPackage (finalAttrs: {
pname = "w3lib";
version = "2.4.0";
version = "2.4.1";
pyproject = true;
src = fetchPypi {
inherit (finalAttrs) pname version;
hash = "sha256-4jOtIWSbadDgR6EPMBga6Wd1JKKfb3H288dY3AyNJkg=";
src = fetchFromGitHub {
owner = "scrapy";
repo = "w3lib";
tag = "v${finalAttrs.version}";
hash = "sha256-RcjsuzlHx3vp0tBucCQZQTVq9FsxSpY9iLwlvoo02cE=";
};
build-system = [ hatchling ];
@@ -25,7 +27,7 @@ buildPythonPackage (finalAttrs: {
meta = {
description = "Library of web-related functions";
homepage = "https://github.com/scrapy/w3lib";
changelog = "https://github.com/scrapy/w3lib/blob/${finalAttrs.version}/NEWS";
changelog = "https://github.com/scrapy/w3lib/blob/${finalAttrs.src.tag}/NEWS";
license = lib.licenses.bsd3;
maintainers = [ ];
};
@@ -7,14 +7,14 @@
buildPythonPackage (finalAttrs: {
pname = "whoisdomain";
version = "1.20260106.1";
version = "1.20260326.1";
pyproject = true;
src = fetchFromGitHub {
owner = "mboot-github";
repo = "WhoisDomain";
tag = finalAttrs.version;
hash = "sha256-OQlOqDmBhqHVFs6U3lC1EryNu4UEi8fzKERkOE3uBaw=";
hash = "sha256-4EWxQq88RWH3yQYVfo07U7jG5ws+SJ7SAq2Mc8nyeRU=";
};
build-system = [ hatchling ];
@@ -16,7 +16,7 @@
buildDunePackage rec {
pname = "utop";
version = "2.16.0";
version = "2.17.0";
propagatedBuildInputs = [
findlib
lambda-term
@@ -29,7 +29,7 @@ buildDunePackage rec {
src = fetchurl {
url = "https://github.com/ocaml-community/utop/releases/download/${version}/utop-${version}.tbz";
hash = "sha256-C595E10hMvshHL6ImUHP0NVMx7uAYrigRD44xUC4x2M=";
hash = "sha256-FOGTkf+LGMFbARc3TU0PxXIAUJV72AKYZQVkuJT6hdo=";
};
nativeBuildInputs = [
@@ -39,6 +39,13 @@ mkKdeDerivation {
})
];
outputs = [
"out"
"dev"
"devtools"
"sessions"
];
postInstall = ''
# Prevent patching this shell file, it only is used by sourcing it from /bin/sh.
chmod -x $out/libexec/plasma-sourceenv.sh
@@ -83,6 +90,9 @@ mkKdeDerivation {
postFixup = ''
mkdir -p $out/nix-support
echo "${lsof} ${xmessage} ${xrdb}" > $out/nix-support/depends
moveToOutput share/xsessions $sessions
moveToOutput share/wayland-sessions $sessions
'';
passthru.providedSessions = [
@@ -40,6 +40,8 @@ buildHomeAssistantComponent rec {
disabledTests = [
# the test relies on NOT changing the hass config_dir and tries to write into the nix store
"test_status_sensor_safe_mode"
# flaky
"test_automations_parsing"
];
meta = {
+2 -2
View File
@@ -1,6 +1,6 @@
{ callPackage, ... }@args:
callPackage ./generic.nix args {
version = "1.29.5";
hash = "sha256-Z0R2ikEUiA83sToEQyROcxvLMTDAoGXX432P1Ymt43Q=";
version = "1.29.7";
hash = "sha256-Zz+PuMCWHET72UENYWGDFFNgm0QGPT8pSCU/wrVpITk=";
}
+2 -2
View File
@@ -1,6 +1,6 @@
{ callPackage, ... }@args:
callPackage ./generic.nix args {
version = "1.28.2";
hash = "sha256-IOXg8skXrPtREg7sL7qaS6Th4Q/ShGUGfMh6fYGoKaM=";
version = "1.28.3";
hash = "sha256-LJapRr+wiCohdE7UKXcKISOuGCjHxIZlCSmT3e6RqRg=";
}

Some files were not shown because too many files have changed in this diff Show More