Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pkgs/applications/editors/vim/plugins/overrides.nix
Original file line number Diff line number Diff line change
Expand Up @@ -1428,7 +1428,7 @@ self: super: {
hexokinase = buildGoModule {
name = "hexokinase";
src = old.src + "/hexokinase";
vendorSha256 = null;
vendorHash = null;
};
in
''
Expand Down
2 changes: 1 addition & 1 deletion pkgs/applications/misc/cheat/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ buildGoModule rec {
installShellCompletion scripts/cheat.{bash,fish,zsh}
'';

vendorSha256 = null;
vendorHash = null;

doCheck = false;

Expand Down
2 changes: 1 addition & 1 deletion pkgs/applications/misc/cointop/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ buildGoModule rec {
sha256 = "sha256-NAw1uoBL/FnNLJ86L9aBCOY65aJn1DDGK0Cd0IO2kr0=";
};

vendorSha256 = null;
vendorHash = null;

ldflags = [ "-s" "-w" ];

Expand Down
2 changes: 1 addition & 1 deletion pkgs/applications/misc/dstask/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ buildGoModule rec {
#
# Ref <https://github.com/NixOS/nixpkgs/pull/87383#issuecomment-633204382>
# and <https://github.com/NixOS/nixpkgs/blob/d4226e3a4b5fcf988027147164e86665d382bbfa/pkgs/development/go-modules/generic/default.nix#L18>
vendorSha256 = null;
vendorHash = null;

doCheck = false;

Expand Down
2 changes: 1 addition & 1 deletion pkgs/applications/misc/mangal/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ buildGoModule rec {
};

proxyVendor = true;
vendorSha256 = null;
vendorHash = null;

ldflags = [ "-s" "-w" ];

Expand Down
2 changes: 1 addition & 1 deletion pkgs/applications/misc/semver/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ buildGoModule rec {
sha256 = "0v3j7rw917wnmp4lyjscqzk4qf4azfiz70ynbq3wl4gwp1m783vv";
};

vendorSha256 = null;
vendorHash = null;
nativeBuildInputs = [ git ];

meta = with lib; {
Expand Down
2 changes: 1 addition & 1 deletion pkgs/applications/misc/tty-share/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ buildGoModule rec {
};

# Upstream has a `./vendor` directory with all deps which we rely upon.
vendorSha256 = null;
vendorHash = null;

ldflags = [ "-s" "-w" "-X main.version=${version}" ];

Expand Down
2 changes: 1 addition & 1 deletion pkgs/applications/misc/ultralist/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ buildGoModule rec {
sha256 = "sha256-GGBW6rpwv1bVbLTD//cU8jNbq/27Ls0su7DymCJTSmY=";
};

vendorSha256 = null;
vendorHash = null;

meta = with lib; {
description = "Simple GTD-style todo list for the command line";
Expand Down
2 changes: 1 addition & 1 deletion pkgs/applications/networking/alpnpass/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ buildGoModule rec {
hash = "sha256-hNZqGTV17rFSKLhZzNqH2E4SSb6Jhk7YQ4TN0HnE+9g=";
};

vendorSha256 = null;
vendorHash = null;

meta = with lib; {
description = "Inspect the plaintext payload inside of proxied TLS connections";
Expand Down
2 changes: 1 addition & 1 deletion pkgs/applications/networking/brig/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ buildGoModule rec {
sha256 = "0gi39jmnzqrgj146yw8lcmgmvzx7ii1dgw4iqig7kx8c0jiqi600";
};

vendorSha256 = null;
vendorHash = null;

nativeBuildInputs = [ installShellFiles ];

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ buildGoModule rec {

nativeBuildInputs = [ installShellFiles ];

vendorSha256 = null;
vendorHash = null;

outputs = [ "out" "man" ];

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ buildGoModule rec {
wrapProgram $out/bin/dnsname --prefix PATH : ${lib.makeBinPath [ dnsmasq ]}
'';

vendorSha256 = null;
vendorHash = null;
subPackages = [ "plugins/meta/dnsname" ];

doCheck = false; # NOTE: requires root privileges
Expand Down
4 changes: 2 additions & 2 deletions pkgs/applications/networking/cluster/k3s/1_24/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ let
k3sCNIPlugins = buildGoModule rec {
pname = "k3s-cni-plugins";
version = k3sCNIVersion;
vendorSha256 = null;
vendorHash = null;

subPackages = [ "." ];

Expand Down Expand Up @@ -210,7 +210,7 @@ let
rev = "v${containerdVersion}";
sha256 = containerdSha256;
};
vendorSha256 = null;
vendorHash = null;
buildInputs = [ btrfs-progs ];
subPackages = [ "cmd/containerd" "cmd/containerd-shim-runc-v2" ];
ldflags = versionldflags;
Expand Down
4 changes: 2 additions & 2 deletions pkgs/applications/networking/cluster/k3s/1_25/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ let
k3sCNIPlugins = buildGoModule rec {
pname = "k3s-cni-plugins";
version = k3sCNIVersion;
vendorSha256 = null;
vendorHash = null;

subPackages = [ "." ];

Expand Down Expand Up @@ -208,7 +208,7 @@ let
rev = "v${containerdVersion}";
sha256 = containerdSha256;
};
vendorSha256 = null;
vendorHash = null;
buildInputs = [ btrfs-progs ];
subPackages = [ "cmd/containerd" "cmd/containerd-shim-runc-v2" ];
ldflags = versionldflags;
Expand Down
4 changes: 2 additions & 2 deletions pkgs/applications/networking/cluster/k3s/builder.nix
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ let
k3sCNIPlugins = buildGoModule rec {
pname = "k3s-cni-plugins";
version = k3sCNIVersion;
vendorSha256 = null;
vendorHash = null;

subPackages = [ "." ];

Expand Down Expand Up @@ -226,7 +226,7 @@ let
rev = "v${containerdVersion}";
sha256 = containerdSha256;
};
vendorSha256 = null;
vendorHash = null;
buildInputs = [ btrfs-progs ];
subPackages = [ "cmd/containerd-shim-runc-v2" ];
ldflags = versionldflags;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ buildGoModule rec {
sha256 = "sha256-alU1c1ppn4cQi582kcA/PIAJJt73i3uG02cQvSYij1A=";
};

vendorSha256 = null;
vendorHash = null;

meta = with lib; {
description = "This plugin evicts the given pod and is useful for testing pod disruption budget rules";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ buildGoModule rec {
rev = "v${version}";
sha256 = "1fbq7bdhy70hlkklppimgdjamnk0v059pg73xm9ax1f4616ki1m6";
};
vendorSha256 = null;
vendorHash = null;

meta = with lib; {
description = "Slack client for your terminal";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ let
inherit pname version;
inherit (kubo-migrator-unwrapped) src;
sourceRoot = "${kubo-migrator-unwrapped.src.name}/${pname}";
vendorSha256 = null;
vendorHash = null;
# Fix build on Go 1.17 and later: panic: qtls.ClientHelloInfo doesn't match
# See https://github.com/ipfs/fs-repo-migrations/pull/163
postPatch = lib.optionalString (lib.elem pname [ "fs-repo-10-to-11" "fs-repo-11-to-12" ]) ''
Expand Down
2 changes: 1 addition & 1 deletion pkgs/applications/networking/kubo/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ buildGoModule rec {

passthru.tests.kubo = nixosTests.kubo;

vendorSha256 = null;
vendorHash = null;

outputs = [ "out" "systemd_unit" "systemd_unit_hardened" ];

Expand Down
2 changes: 1 addition & 1 deletion pkgs/applications/version-management/git-hound/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ buildGoModule rec {
sha256 = "sha256-HD5OK8HjnLDbyC/TmVI2HfBRIUCyyHTbA3JvKoeXV5E=";
};

vendorSha256 = null; #vendorSha256 = "";
vendorHash = null;

meta = with lib; {
description = "Reconnaissance tool for GitHub code search";
Expand Down
2 changes: 1 addition & 1 deletion pkgs/applications/version-management/gitls/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ buildGoModule rec {
hash = "sha256-kLkH/nNidd1QNPKvo7fxZwMhTgd4AVB8Ofw0Wo0z6c0=";
};

vendorSha256 = null;
vendorHash = null;

passthru.tests.version = testers.testVersion {
package = gitls;
Expand Down
2 changes: 1 addition & 1 deletion pkgs/applications/virtualization/ignite/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ buildGoModule rec{
leaveDotGit = true;
};

vendorSha256 = null;
vendorHash = null;

doCheck = false;

Expand Down
2 changes: 1 addition & 1 deletion pkgs/applications/virtualization/umoci/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ buildGoModule rec {
sha256 = "0in8kyi4jprvbm3zsl3risbjj8b0ma62yl3rq8rcvcgypx0mn7d4";
};

vendorSha256 = null;
vendorHash = null;

doCheck = false;

Expand Down
2 changes: 1 addition & 1 deletion pkgs/development/libraries/boringssl/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ buildGoModule {

nativeBuildInputs = [ cmake ninja perl ];

vendorSha256 = null;
vendorHash = null;

# hack to get both go and cmake configure phase
# (if we use postConfigure then cmake will loop runHook postConfigure)
Expand Down
2 changes: 1 addition & 1 deletion pkgs/development/tools/asmfmt/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ buildGoModule rec {
sha256 = "sha256-YxIVqPGsqxvOY0Qz4Jw5FuO9IbplCICjChosnHrSCgc=";
};

vendorSha256 = null;
vendorHash = null;

# This package comes with its own version of goimports, gofmt and goreturns
# but these binaries are outdated and are offered by other packages.
Expand Down
2 changes: 1 addition & 1 deletion pkgs/development/tools/build-managers/goredo/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ buildGoModule rec {

inherit (sharness) SHARNESS_TEST_SRCDIR;

vendorSha256 = null;
vendorHash = null;

modRoot = "./src";
subPackages = [ "." ];
Expand Down
2 changes: 1 addition & 1 deletion pkgs/development/tools/butane/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ buildGoModule rec {
hash = "sha256-HkvDJVSGve6t1gEek8FvfIK20r5TOHRJ71KsGUj95fM=";
};

vendorSha256 = null;
vendorHash = null;

doCheck = false;

Expand Down
2 changes: 1 addition & 1 deletion pkgs/development/tools/dapper/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ buildGoModule rec {
rev = "v${version}";
sha256 = "sha256-V+lHnOmIWjI1qmoJ7+pp+cGmJAtSeY+r2I9zykswQzM=";
};
vendorSha256 = null;
vendorHash = null;

patchPhase = ''
substituteInPlace main.go --replace 0.0.0 ${version}
Expand Down
2 changes: 1 addition & 1 deletion pkgs/development/tools/dockfmt/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ buildGoModule rec {
hash = "sha256-wEC9kENcE3u+Mb7uLbx/VBUup6PBnCY5cxTYvkJcavg=";
};

vendorSha256 = null;
vendorHash = null;

ldflags = [
"-w"
Expand Down
2 changes: 1 addition & 1 deletion pkgs/development/tools/gdlv/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ buildGoModule rec {
sha256 = "sha256-G1/Wbz836yfGZ/1ArICrNbWU6eh4SHXDmo4FKkjUszY=";
};

vendorSha256 = null;
vendorHash = null;
subPackages = ".";

buildInputs = lib.optionals stdenv.isDarwin [ OpenGL AppKit ];
Expand Down
2 changes: 1 addition & 1 deletion pkgs/development/tools/gllvm/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ buildGoModule rec {
sha256 = "sha256-CoreqnMRuPuv+Ci1uyF3HJCJFwK2jwB79okynv6AHTA=";
};

vendorSha256 = null;
vendorHash = null;

nativeCheckInputs = with llvmPackages; [
clang
Expand Down
2 changes: 1 addition & 1 deletion pkgs/development/tools/gocode-gomod/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ buildGoModule rec {
sha256 = "YAOYrPPKgnjCErq8+iW0Le51clGBv0MJy2Nnn7UVo/s=";
};

vendorSha256 = null;
vendorHash = null;

postInstall = ''
mv $out/bin/gocode $out/bin/gocode-gomod
Expand Down
2 changes: 1 addition & 1 deletion pkgs/development/tools/gocyclo/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ buildGoModule rec {
sha256 = "sha256-1IwtGUqshpLDyxH5NNkGUads1TKLs48eslNnFylGUPA=";
};

vendorSha256 = null;
vendorHash = null;

meta = with lib; {
description = "Calculate cyclomatic complexities of functions in Go source code";
Expand Down
2 changes: 1 addition & 1 deletion pkgs/development/tools/godef/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ buildGoModule rec {

subPackages = [ "." ];

vendorSha256 = null;
vendorHash = null;

doCheck = false;

Expand Down
2 changes: 1 addition & 1 deletion pkgs/development/tools/gogetdoc/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ buildGoModule rec {
version = "2019-02-28";
rev = "b37376c5da6aeb900611837098f40f81972e63e4";

vendorSha256 = null;
vendorHash = null;

doCheck = false;

Expand Down
2 changes: 1 addition & 1 deletion pkgs/development/tools/gojsontoyaml/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ buildGoModule rec {
sha256 = "sha256-ebxz2uTH7XwD3j6JnsfET6aCGYjvsCjow/sU9pagg50=";
};

vendorSha256 = null;
vendorHash = null;

meta = with lib; {
description = "Simply tool to convert json to yaml written in Go";
Expand Down
2 changes: 1 addition & 1 deletion pkgs/development/tools/gox/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ buildGoModule rec {
sha256 = "0mkh81hd7kn45dz7b6yhzqsg2mvg1g6pwx89jjigxrnqhyg9vrl7";
};

vendorSha256 = null;
vendorHash = null;

# This is required for wrapProgram.
allowGoReference = true;
Expand Down
2 changes: 1 addition & 1 deletion pkgs/development/tools/hjson-go/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ buildGoModule rec {
hash = "sha256-WR6wLa/Za5MgcH1enHG/74uq/7PdaY/OzvJdgMgDFIk=";
};

vendorSha256 = null;
vendorHash = null;

ldflags = [
"-s"
Expand Down
2 changes: 1 addition & 1 deletion pkgs/development/tools/hostess/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ buildGoModule rec {

subPackages = [ "." ];

vendorSha256 = null;
vendorHash = null;

meta = with lib; {
description = "An idempotent command-line utility for managing your /etc/hosts* file.";
Expand Down
2 changes: 1 addition & 1 deletion pkgs/development/tools/img/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ buildGoModule rec {
sha256 = "0r5hihzp2679ki9hr3p0f085rafy2hc8kpkdhnd4m5k4iibqib08";
};

vendorSha256 = null;
vendorHash = null;

postPatch = ''
V={newgidmap,newgidmap} \
Expand Down
2 changes: 1 addition & 1 deletion pkgs/development/tools/jsonnet-bundler/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ buildGoModule rec {
sha256 = "sha256-vjb5wEiJw48s7FUarpA94ZauFC7iEgRDAkRTwRIZ8pA=";
};

vendorSha256 = null;
vendorHash = null;

ldflags = [ "-s" "-w" "-X main.Version=${version}" ];

Expand Down
Loading