File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -108,6 +108,10 @@ rec {
108
108
# Needed by libcloud during tests
109
109
SSL_CERT_FILE = "${ pkgs . cacert } /etc/ssl/certs/ca-bundle.crt" ;
110
110
111
+ # Add openssh to nixops' PATH. On some platforms, e.g. CentOS and RHEL
112
+ # the version of openssh is causing errors when have big networks (40+)
113
+ makeWrapperArgs = [ "--prefix" "PATH" ":" "${ openssl } /bin" "--set" "PYTHONPATH" ":" ] ;
114
+
111
115
postInstall =
112
116
''
113
117
# Backward compatibility symlink.
@@ -118,11 +122,7 @@ rec {
118
122
119
123
mkdir -p $out/share/nix/nixops
120
124
cp -av nix/* $out/share/nix/nixops
121
-
122
- # Add openssh to nixops' PATH. On some platforms, e.g. CentOS and RHEL
123
- # the version of openssh is causing errors when have big networks (40+)
124
- wrapProgram $out/bin/nixops --prefix PATH : "${ openssh } /bin"
125
- '' ; # */
125
+ '' ;
126
126
127
127
meta . description = "Nix package for ${ stdenv . system } " ;
128
128
} ) ;
You can’t perform that action at this time.
0 commit comments