about summary refs log tree commit diff
path: root/pkgs/development/compilers
diff options
context:
space:
mode:
authorvolth <volth@volth.com>2019-08-31 11:41:23 +0000
committerSamuel Leathers <disasm@gmail.com>2019-08-31 07:41:22 -0400
commit7bb6b373ab163639386f6a8a8f710790226c49af (patch)
tree8182a64a14991ef398aafd7985811edfedd13ad7 /pkgs/development/compilers
parent01c4c15ef55845de1052ed915b4f05b7b7059a75 (diff)
downloadnixlib-7bb6b373ab163639386f6a8a8f710790226c49af.tar
nixlib-7bb6b373ab163639386f6a8a8f710790226c49af.tar.gz
nixlib-7bb6b373ab163639386f6a8a8f710790226c49af.tar.bz2
nixlib-7bb6b373ab163639386f6a8a8f710790226c49af.tar.lz
nixlib-7bb6b373ab163639386f6a8a8f710790226c49af.tar.xz
nixlib-7bb6b373ab163639386f6a8a8f710790226c49af.tar.zst
nixlib-7bb6b373ab163639386f6a8a8f710790226c49af.zip
treewide: name -> pname (#67513)
Diffstat (limited to 'pkgs/development/compilers')
-rw-r--r--pkgs/development/compilers/fasm/bin.nix2
-rw-r--r--pkgs/development/compilers/rust/rustfmt.nix2
2 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/compilers/fasm/bin.nix b/pkgs/development/compilers/fasm/bin.nix
index 44d784133f5f..5353862424a0 100644
--- a/pkgs/development/compilers/fasm/bin.nix
+++ b/pkgs/development/compilers/fasm/bin.nix
@@ -1,7 +1,7 @@
 { stdenvNoCC, lib, fetchurl }:
 
 stdenvNoCC.mkDerivation rec {
-  name = "fasm-bin-${version}";
+  pname = "fasm-bin";
 
   version = "1.73.16";
 
diff --git a/pkgs/development/compilers/rust/rustfmt.nix b/pkgs/development/compilers/rust/rustfmt.nix
index 537bdaf445cd..9793eee1708b 100644
--- a/pkgs/development/compilers/rust/rustfmt.nix
+++ b/pkgs/development/compilers/rust/rustfmt.nix
@@ -1,7 +1,7 @@
 { stdenv, rustPlatform, Security }:
 
 rustPlatform.buildRustPackage rec {
-  name = "rustfmt-${version}";
+  pname = "rustfmt";
   inherit (rustPlatform.rust.rustc) version src;
 
   # the rust source tarball already has all the dependencies vendored, no need to fetch them again