dotfiles/fixups.nix

16 lines
439 B
Nix
Raw Normal View History

2021-11-15 13:34:51 +01:00
(pkgs: super: {
2024-01-02 11:42:04 +01:00
# https://github.com/NixOS/nixpkgs/pull/278153
nats-server = super.buildGoModule rec {
pname = "nats-server";
version = "2.10.7";
src = pkgs.fetchFromGitHub {
owner = "nats-io";
repo = pname;
rev = "v${version}";
hash = "sha256-DZ0a4gptTjuSVBlhDEWKTmU6Dgt36xulfjVK1kJtXhI=";
};
doCheck = false;
vendorHash = "sha256-Q2wc4esu2H81ct9TUPs+ysT3LrW698+9JllbvdDa5Yc=";
};
2021-11-15 13:34:51 +01:00
})