lol

Merge pull request #255405 from r-ryantm/auto-update/refinery-cli

refinery-cli: 0.8.10 -> 0.8.11

authored by

Mario Rodas and committed by
GitHub
400df271 f7699497

+7 -5
+7 -5
pkgs/development/tools/refinery-cli/default.nix
··· 1 - { fetchCrate, lib, openssl, pkg-config, rustPlatform }: 1 + { fetchCrate, lib, stdenv, openssl, pkg-config, rustPlatform, darwin }: 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "refinery-cli"; 5 - version = "0.8.10"; 5 + version = "0.8.11"; 6 6 7 7 src = fetchCrate { 8 8 pname = "refinery_cli"; 9 9 inherit version; 10 - sha256 = "sha256-6nb/RduzoTK5UtdzYBLdKkYTUrV9A1w1ZePqr3cO534="; 10 + sha256 = "sha256-Dx0xcPQsq5fYrjgCrEjXyQJOpjEF9d1vavTo+LUKSyE="; 11 11 }; 12 12 13 - cargoHash = "sha256-rdxcWsLwhWuqGE5Z698NULg6Y2nkLqiIqEpBpceflk0="; 13 + cargoHash = "sha256-giD9yBbC3Fsgtch6lkMLGkYik/hivK48Um2qWI7EV+A="; 14 14 15 15 nativeBuildInputs = [ pkg-config ]; 16 16 17 - buildInputs = [ openssl ]; 17 + buildInputs = [ openssl ] 18 + ++ lib.optionals stdenv.isDarwin [ darwin.apple_sdk.frameworks.SystemConfiguration ]; 18 19 19 20 meta = with lib; { 20 21 description = "Run migrations for the Refinery ORM for Rust via the CLI"; 21 22 homepage = "https://github.com/rust-db/refinery"; 23 + changelog = "https://github.com/rust-db/refinery/blob/${version}/CHANGELOG.md"; 22 24 license = licenses.mit; 23 25 maintainers = with maintainers; [ lucperkins ]; 24 26 };