We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ac0056f commit 5978ab1Copy full SHA for 5978ab1
flake.nix
@@ -31,7 +31,7 @@
31
date = "2022-09-03";
32
channel = "nightly";
33
}).default.override {
34
- extensions = [ "rust-src" ];
+ extensions = [ "rust-src" "rust-analyzer" ];
35
targets = [ "x86_64-unknown-linux-musl" ];
36
};
37
in
@@ -156,6 +156,18 @@
156
patchPhase = "true";
157
fixupPhase = "true";
158
159
+ driver-proxy-release-tar-zstd = with pkgs;
160
+ stdenv.mkDerivation {
161
+ inherit (packages.driver-proxy-release) version pname;
162
+ unpackPhase = "true";
163
+ patchPhase = "true";
164
+ fixupPhase = "true";
165
+ installPhase = ''
166
+ mkdir $out/
167
+ cd ${packages.driver-proxy-release}
168
+ tar -cv * | ${pkgs.zstd}/bin/zstd -9 > $out/driver.tar.zst
169
+ '';
170
+ };
171
172
devShells = {
173
default = pkgs.mkShell {
0 commit comments