summary refs log tree commit diff
path: root/pkgs/tools/filesystems/archivemount
diff options
context:
space:
mode:
authorBen Siraphob <bensiraphob@gmail.com>2021-01-17 16:17:16 +0700
committerBen Siraphob <bensiraphob@gmail.com>2021-01-17 23:27:27 +0700
commitd6aeae8f90a4935525915431e3b08ebf1b7d5bf3 (patch)
tree0376acde4a65afc15fccb505d35a9fc65fafe55c /pkgs/tools/filesystems/archivemount
parent979e6e67d32a934dcc39dedfd588baf6e3f7ed78 (diff)
downloadnixpkgs-d6aeae8f90a4935525915431e3b08ebf1b7d5bf3.tar
nixpkgs-d6aeae8f90a4935525915431e3b08ebf1b7d5bf3.tar.gz
nixpkgs-d6aeae8f90a4935525915431e3b08ebf1b7d5bf3.tar.bz2
nixpkgs-d6aeae8f90a4935525915431e3b08ebf1b7d5bf3.tar.lz
nixpkgs-d6aeae8f90a4935525915431e3b08ebf1b7d5bf3.tar.xz
nixpkgs-d6aeae8f90a4935525915431e3b08ebf1b7d5bf3.tar.zst
nixpkgs-d6aeae8f90a4935525915431e3b08ebf1b7d5bf3.zip
pkgs/tools: pkgconfig -> pkg-config (2)
Diffstat (limited to 'pkgs/tools/filesystems/archivemount')
-rw-r--r--pkgs/tools/filesystems/archivemount/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/filesystems/archivemount/default.nix b/pkgs/tools/filesystems/archivemount/default.nix
index 69beb9e7e6f..e3f9d8505fc 100644
--- a/pkgs/tools/filesystems/archivemount/default.nix
+++ b/pkgs/tools/filesystems/archivemount/default.nix
@@ -1,4 +1,4 @@
-{ lib, stdenv, fetchurl, pkgconfig, fuse, libarchive }:
+{ lib, stdenv, fetchurl, pkg-config, fuse, libarchive }:
 
 let
   name = "archivemount-0.9.1";
@@ -11,7 +11,7 @@ stdenv.mkDerivation {
     sha256 = "1cy5b6qril9c3ry6fv7ir87s8iyy5vxxmbyx90dm86fbra0vjaf5";
   };
 
-  nativeBuildInputs = [ pkgconfig ];
+  nativeBuildInputs = [ pkg-config ];
   buildInputs = [ fuse libarchive ];
 
   meta = {