aboutsummaryrefslogtreecommitdiff
path: root/_posts/2020-10-05-cargo2nix-dramatically-simpler-rust-in-nix.md
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--_posts/2020-10-05-cargo2nix-dramatically-simpler-rust-in-nix.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/_posts/2020-10-05-cargo2nix-dramatically-simpler-rust-in-nix.md b/_posts/2020-10-05-cargo2nix-dramatically-simpler-rust-in-nix.md
index 7db2754..7f427b6 100644
--- a/_posts/2020-10-05-cargo2nix-dramatically-simpler-rust-in-nix.md
+++ b/_posts/2020-10-05-cargo2nix-dramatically-simpler-rust-in-nix.md
@@ -30,7 +30,7 @@ let
};
in pkgs.stdenv.mkDerivation {
inherit src;
- name = "swift-test";
+ name = "cargo2nix-test";
buildInputs = with pkgs; [ cargo ];
phases = [ "unpackPhase" "buildPhase" ];
buildPhase = ''