about summary refs log tree commit diff
path: root/pkgs/tools/filesystems
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/tools/filesystems
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/tools/filesystems')
-rw-r--r--pkgs/tools/filesystems/btrfs-dedupe/default.nix2
-rw-r--r--pkgs/tools/filesystems/gitfs/default.nix2
2 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/filesystems/btrfs-dedupe/default.nix b/pkgs/tools/filesystems/btrfs-dedupe/default.nix
index ebab6c5b16ba..e2538387d450 100644
--- a/pkgs/tools/filesystems/btrfs-dedupe/default.nix
+++ b/pkgs/tools/filesystems/btrfs-dedupe/default.nix
@@ -3,7 +3,7 @@
 with rustPlatform;
 
 buildRustPackage rec {
-  name = "btrfs-dedupe-${version}";
+  pname = "btrfs-dedupe";
   version = "1.1.0";
 
 
diff --git a/pkgs/tools/filesystems/gitfs/default.nix b/pkgs/tools/filesystems/gitfs/default.nix
index ec734e52f733..614e323e6b29 100644
--- a/pkgs/tools/filesystems/gitfs/default.nix
+++ b/pkgs/tools/filesystems/gitfs/default.nix
@@ -1,7 +1,7 @@
 { stdenv, fetchFromGitHub, python2Packages }:
 
 python2Packages.buildPythonApplication rec {
-  name = "gitfs-${version}";
+  pname = "gitfs";
   version = "0.4.5.1";
 
   src = fetchFromGitHub {