nsc: 2.11.1 -> 2.12.0 (#445319)

authored by Nick Cao and committed by GitHub 39b937c0 514fadce

+4 -4
+4 -4
pkgs/by-name/ns/nsc/package.nix
··· 8 8 9 9 buildGoModule rec { 10 10 pname = "nsc"; 11 - version = "2.11.1"; 11 + version = "2.12.0"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "nats-io"; 15 15 repo = "nsc"; 16 16 rev = "v${version}"; 17 - hash = "sha256-9HHrAT4LKVLb2+IDmXoPRtOKo1DRFznAbxJZp/B1uRY="; 17 + hash = "sha256-ct2InMPpqbtFeKtarWXGuPiXS2OD78w2sX0BoFiCl0c="; 18 18 }; 19 19 20 20 ldflags = [ ··· 24 24 "-X main.builtBy=nixpkgs" 25 25 ]; 26 26 27 - vendorHash = "sha256-sTaiaLJyokasaf1Mbaz4RkgspTd3VphZat8Bavg/Y9A="; 27 + vendorHash = "sha256-0tJHK999AjtKYUB0gC5SlQPqit6UTyGsbb6vC7KdQQc="; 28 28 29 29 nativeBuildInputs = [ installShellFiles ]; 30 30 ··· 47 47 # the test strips table formatting from the command output in a naive way 48 48 # that removes all the table characters, including '-'. 49 49 # The nix build directory looks something like: 50 - # /private/tmp/nix-build-nsc-2.11.1.drv-0/nsc_test2000598938/keys 50 + # /private/tmp/nix-build-nsc-2.12.0.drv-0/nsc_test2000598938/keys 51 51 # Then the `-` are removed from the path unintentionally and the test fails. 52 52 # This should be fixed upstream to avoid mangling the path when 53 53 # removing the table decorations from the command output.