about summary refs log tree commit diff
path: root/pkgs/development/tools/nodenv
diff options
context:
space:
mode:
authorWeijia Wang <9713184+wegank@users.noreply.github.com>2023-02-28 00:38:47 +0200
committerGitHub <noreply@github.com>2023-02-28 00:38:47 +0200
commit97e7b0e43c931ce73d845d35efda2017c4cd9792 (patch)
treec849e36f01180709274ad2dd956b6ce63b439b26 /pkgs/development/tools/nodenv
parent647a7f0eeaff484c186d4be6bf2b60ea05e58f77 (diff)
parent702dd8ea613cf9b11882962c92ef3e3298eb1f0e (diff)
Merge pull request #218670 from wegank/nodenv-unix
nodenv: support more platforms
Diffstat (limited to 'pkgs/development/tools/nodenv')
-rw-r--r--pkgs/development/tools/nodenv/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/tools/nodenv/default.nix b/pkgs/development/tools/nodenv/default.nix
index 56bb5fe0a21d3..657492966cf27 100644
--- a/pkgs/development/tools/nodenv/default.nix
+++ b/pkgs/development/tools/nodenv/default.nix
@@ -39,6 +39,6 @@ stdenv.mkDerivation rec {
     changelog = "https://github.com/nodenv/nodenv/releases/tag/v${version}";
     license = licenses.mit;
     maintainers = with maintainers; [ alexnortung ];
-    platforms = [ "x86_64-linux" ];
+    platforms = platforms.unix;
   };
 }