From a25e9b801f03b8214a724f552c6850aebb0c78e9 Mon Sep 17 00:00:00 2001 From: SandaruKasa Date: Fri, 5 Jun 2026 01:55:26 +0300 Subject: [PATCH 1/2] dix: 1.4.2 -> 2.0.0 --- pkgs/by-name/di/dix/package.nix | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/pkgs/by-name/di/dix/package.nix b/pkgs/by-name/di/dix/package.nix index 5a53d877eb8b..b05bc1f66e12 100644 --- a/pkgs/by-name/di/dix/package.nix +++ b/pkgs/by-name/di/dix/package.nix @@ -7,18 +7,26 @@ }: rustPlatform.buildRustPackage (finalAttrs: { pname = "dix"; - version = "1.4.2"; + version = "2.0.0"; __structuredAttrs = true; src = fetchFromGitHub { - owner = "faukah"; + owner = "manic-systems"; repo = "dix"; tag = "v${finalAttrs.version}"; - hash = "sha256-5mn79jtV9gct4LdU5tdz7Q7GHTM2v0Cb2cso0A0dZX0="; + hash = "sha256-5aH8zX/Wm+KHzd1fjmjlxjDB+psDG42JAY5U8lrjGDU="; }; - cargoHash = "sha256-1DtxGaahPFGZcQMX8GHZ0jSpMqSRIGKE3pZSdCVoKnU="; + cargoHash = "sha256-llStz2BaHBH9iHhfbptAE+Td5HPsvzAlPtXohrCxY4w="; + + env.TMPDIR = "/tmp/"; + checkFlags = [ + "--skip=store::nix_command::tests::test_query_closure_path_info" + "--skip=store::nix_command::tests::test_query_closure_size" + "--skip=store::nix_command::tests::test_query_dependents" + "--skip=store::nix_command::tests::test_query_system_derivations" + ]; nativeInstallCheckInputs = [ versionCheckHook ]; doInstallCheck = true; @@ -26,7 +34,7 @@ rustPlatform.buildRustPackage (finalAttrs: { passthru.updateScript = nix-update-script { }; meta = { - homepage = "https://github.com/faukah/dix"; + homepage = "https://github.com/manic-systems/dix"; description = "Blazingly fast tool to diff Nix related things"; license = lib.licenses.gpl3Only; maintainers = with lib.maintainers; [ From 0a562239474c44e0d48ceb8a90e8fa07624c5cb4 Mon Sep 17 00:00:00 2001 From: SandaruKasa Date: Fri, 5 Jun 2026 01:59:11 +0300 Subject: [PATCH 2/2] dix: meta: add `changelog` & `platforms` --- pkgs/by-name/di/dix/package.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkgs/by-name/di/dix/package.nix b/pkgs/by-name/di/dix/package.nix index b05bc1f66e12..3e71f00c6470 100644 --- a/pkgs/by-name/di/dix/package.nix +++ b/pkgs/by-name/di/dix/package.nix @@ -36,7 +36,13 @@ rustPlatform.buildRustPackage (finalAttrs: { meta = { homepage = "https://github.com/manic-systems/dix"; description = "Blazingly fast tool to diff Nix related things"; + changelog = "https://github.com/manic-systems/dix/releases/tag/v${finalAttrs.version}"; license = lib.licenses.gpl3Only; + platforms = [ + "x86_64-linux" + "aarch64-linux" + "aarch64-darwin" + ]; maintainers = with lib.maintainers; [ faukah NotAShelf