pgcat: 1.1.0 -> 1.1.1

+4 -3
+4 -3
pkgs/servers/sql/pgcat/default.nix
··· 7 7 8 8 rustPlatform.buildRustPackage rec { 9 9 pname = "pgcat"; 10 - version = "1.1.0"; 10 + version = "1.1.1"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "postgresml"; 14 14 repo = "pgcat"; 15 15 rev = "v${version}"; 16 - hash = "sha256-ESHBOh9JSzu6Zxh0z/+nebumi/zyFVdTK0DIwR/46Xo="; 16 + hash = "sha256-BERxdGgPk8POnhLsyy4lKV4LCoHsJTmv2OhAOz6CKKc="; 17 17 }; 18 18 19 - cargoHash = "sha256-2wZADXEi8bfNgSQuL7yAmDYd/a0LOssdPFa/kvSSLFU="; 19 + cargoHash = "sha256-GwcqR8pEvz42NEmcuXpcoPdChzRBYsDEnllX62T8ulQ="; 20 20 21 21 buildInputs = lib.optionals stdenv.isDarwin [ 22 22 darwin.apple_sdk.frameworks.Security ··· 46 46 license = with licenses; [mit]; 47 47 platforms = platforms.unix; 48 48 maintainers = with maintainers; [cathalmullan]; 49 + mainProgram = "pgcat"; 49 50 }; 50 51 }