diff options
| author | Jörg Thalheim <joerg@thalheim.io> | 2021-08-12 21:36:42 +0200 |
|---|---|---|
| committer | Jörg Thalheim <joerg@thalheim.io> | 2021-08-12 21:45:04 +0200 |
| commit | eaaea54a3730c9589c54e70293af58f8186d943e (patch) | |
| tree | 697d543ce8e60bc69fb3284f53f24edf9ce7165c | |
| parent | Merge pull request #133622 from erikarvstedt/fix-recursive-doas (diff) | |
| download | nixpkgs-origin/hub.tar.gz | |
hub: fix aarch64-darwin buildorigin/hub
| -rw-r--r-- | pkgs/applications/version-management/git-and-tools/hub/default.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/version-management/git-and-tools/hub/default.nix b/pkgs/applications/version-management/git-and-tools/hub/default.nix index e0d7e46d22a5..9d63642dcb33 100644 --- a/pkgs/applications/version-management/git-and-tools/hub/default.nix +++ b/pkgs/applications/version-management/git-and-tools/hub/default.nix @@ -1,4 +1,4 @@ -{ lib, buildGoPackage, fetchFromGitHub, git, groff, installShellFiles, util-linux, nixosTests }: +{ lib, buildGoPackage, fetchFromGitHub, git, groff, installShellFiles, unixtools, nixosTests }: buildGoPackage rec { pname = "hub"; @@ -16,7 +16,7 @@ buildGoPackage rec { sha256 = "1qjab3dpia1jdlszz3xxix76lqrm4zbmqzd9ymld7h06awzsg2vh"; }; - nativeBuildInputs = [ groff installShellFiles util-linux ]; + nativeBuildInputs = [ groff installShellFiles unixtools.col ]; postPatch = '' patchShebangs . |
