Files
dependabot[bot] c4cfee78d1 build(deps): bump github.com/modelcontextprotocol/go-sdk from 1.6.1 to 1.7.0 (#287)
* build(deps): bump github.com/modelcontextprotocol/go-sdk

Bumps [github.com/modelcontextprotocol/go-sdk](https://github.com/modelcontextprotocol/go-sdk) from 1.6.1 to 1.7.0.
- [Release notes](https://github.com/modelcontextprotocol/go-sdk/releases)
- [Commits](https://github.com/modelcontextprotocol/go-sdk/compare/v1.6.1...v1.7.0)

---
updated-dependencies:
- dependency-name: github.com/modelcontextprotocol/go-sdk
  dependency-version: 1.7.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* chore(nix): update vendorHash for go-sdk 1.7.0

Nix CI reported the new fixed-output derivation hash on both
ubuntu and macos after the go.mod change.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01P8CeGvTzhUidTM28CfMR37

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: avivsinai <avivsinai@gmail.com>
Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
2026-08-11 22:31:54 +03:00

46 lines
1.2 KiB
Nix
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{
description = "bkt Bitbucket CLI";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = nixpkgs.legacyPackages.${system};
bkt = pkgs.buildGoModule {
pname = "bkt";
version = "dev";
src = ./.;
vendorHash = "sha256-9wjEq4a5snJJ4uD4y+O3wJ15vVNs6Mcu8JVG43n94To=";
subPackages = [ "cmd/bkt" ];
ldflags = [ "-s" "-w" ];
meta = with pkgs.lib; {
description = "Bitbucket CLI (gh-equivalent for Bitbucket Cloud and Data Center)";
homepage = "https://github.com/avivsinai/bitbucket-cli";
license = licenses.mit;
mainProgram = "bkt";
};
};
in
{
packages.default = bkt;
packages.bkt = bkt;
apps.default = {
type = "app";
program = "${bkt}/bin/bkt";
};
devShells.default = pkgs.mkShell {
packages = [ pkgs.go pkgs.gopls pkgs.gotools pkgs.golangci-lint ];
};
});
}