Unverified Commit cb2c327e authored by Gaétan Lepage's avatar Gaétan Lepage Committed by GitHub
Browse files

pixi: 0.40.3 -> 0.42.1 (#383075)

parents 34ce1b77 1f218ba5
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -12,19 +12,19 @@
  nix-update-script,
}:

rustPlatform.buildRustPackage rec {
rustPlatform.buildRustPackage (finalAttrs: {
  pname = "pixi";
  version = "0.40.3";
  version = "0.42.1";

  src = fetchFromGitHub {
    owner = "prefix-dev";
    repo = "pixi";
    tag = "v${version}";
    hash = "sha256-PxG5bbHcpPOc4wAqxsiGkw1NeS3ya4/cZcDSg4LgX6Q=";
    tag = "v${finalAttrs.version}";
    hash = "sha256-ixA/vgnLF7sStooD0zkaTUoTIK1flQuqsruZVc9HbEI=";
  };

  useFetchCargoVendor = true;
  cargoHash = "sha256-0jWtbCcj4BTCBuW+KenBG/MCcRWWn8WHrTEJdkIyMes=";
  cargoHash = "sha256-CJ4FCKYZQe0uCJo7XPzTPHViW3gDrJkacWczBkfctWY=";

  nativeBuildInputs = [
    pkg-config
@@ -76,4 +76,4 @@ rustPlatform.buildRustPackage rec {
    ];
    mainProgram = "pixi";
  };
}
})