summary refs log tree commit diff
path: root/pkgs/applications/networking/cluster/nomad/1.3.nix
diff options
context:
space:
mode:
authorLuiz Aoqui <luiz@hashicorp.com>2022-06-20 17:22:24 -0400
committerGitHub <noreply@github.com>2022-06-21 07:22:24 +1000
commitbbb4e423e476622c47a55db710887b010a79bd8b (patch)
tree648c50cb2e48289f7ef11b0fd108fcc373305706 /pkgs/applications/networking/cluster/nomad/1.3.nix
parent1938f36f03d6c4fed0487e2787ee57d77cc0706a (diff)
downloadnixpkgs-bbb4e423e476622c47a55db710887b010a79bd8b.tar
nixpkgs-bbb4e423e476622c47a55db710887b010a79bd8b.tar.gz
nixpkgs-bbb4e423e476622c47a55db710887b010a79bd8b.tar.bz2
nixpkgs-bbb4e423e476622c47a55db710887b010a79bd8b.tar.lz
nixpkgs-bbb4e423e476622c47a55db710887b010a79bd8b.tar.xz
nixpkgs-bbb4e423e476622c47a55db710887b010a79bd8b.tar.zst
nixpkgs-bbb4e423e476622c47a55db710887b010a79bd8b.zip
nomad: remove dependency on Nvidia (#178287)
Nomad 1.2.0 externalized[1] the Nvidia device driver out of the main
codebase and into a separate plugin[2], so there is no need to load the
Nvidia libraries anymore when building Nomad itself.

[1]: https://github.com/hashicorp/nomad/blob/main/CHANGELOG.md#120-november-15-2021
[2]: https://github.com/hashicorp/nomad-device-nvidia
Diffstat (limited to 'pkgs/applications/networking/cluster/nomad/1.3.nix')
-rw-r--r--pkgs/applications/networking/cluster/nomad/1.3.nix4
1 files changed, 1 insertions, 3 deletions
diff --git a/pkgs/applications/networking/cluster/nomad/1.3.nix b/pkgs/applications/networking/cluster/nomad/1.3.nix
index 6670b35f67e..0145a5b1090 100644
--- a/pkgs/applications/networking/cluster/nomad/1.3.nix
+++ b/pkgs/applications/networking/cluster/nomad/1.3.nix
@@ -1,11 +1,9 @@
 { callPackage
 , buildGoModule
-, nvidia_x11
-, nvidiaGpuSupport
 }:
 
 callPackage ./generic.nix {
-  inherit buildGoModule nvidia_x11 nvidiaGpuSupport;
+  inherit buildGoModule;
   version = "1.3.1";
   sha256 = "03ckhqh5xznvhbk380ka0g9w9hrvsi389h5maw68f3g3acx68jm7";
   vendorSha256 = "08k5dxaq4r2q0km6y9mc14haski6l7hmhmzn5wjb961hwf5hkfgh";