about summary refs log tree commit diff
path: root/pkgs/development/tools/rust/maturin
diff options
context:
space:
mode:
authorDaniël de Kok <me@danieldk.eu>2021-02-11 15:04:30 +0100
committerDaniël de Kok <me@danieldk.eu>2021-02-11 15:04:30 +0100
commitab81a6cb45e2995ed47e4b6656358a423d7ab792 (patch)
tree554d8632a0d97d5173996ca1dce1fc6019e11710 /pkgs/development/tools/rust/maturin
parent4dae2acb8018bc5998ee2292999c847fdad403d1 (diff)
maturin: replace name by pname
Diffstat (limited to 'pkgs/development/tools/rust/maturin')
-rw-r--r--pkgs/development/tools/rust/maturin/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/tools/rust/maturin/default.nix b/pkgs/development/tools/rust/maturin/default.nix
index d40145f163b2c..fec5ead5d42be 100644
--- a/pkgs/development/tools/rust/maturin/default.nix
+++ b/pkgs/development/tools/rust/maturin/default.nix
@@ -4,7 +4,7 @@
 let
   inherit (darwin.apple_sdk.frameworks) Security;
 in rustPlatform.buildRustPackage rec {
-  name = "maturin-${version}";
+  pname = "maturin";
   version = "0.9.0";
 
   src = fetchFromGitHub {