summary refs log tree commit diff
path: root/pkgs/data/icons
diff options
context:
space:
mode:
authorBobby Rong <rjl931189261@126.com>2022-02-06 18:09:16 +0800
committerGitHub <noreply@github.com>2022-02-06 18:09:16 +0800
commit2e502cce72a8e84b708a0351a8f770f093cfc0e9 (patch)
treed90ea2295935b4db2cf76a0c458078c845e267df /pkgs/data/icons
parentbb96e481b317c770281c1bfd9e6face9bfe0888f (diff)
parentdeebff0d5a6637ee7c2e6dffe005c10b44b451fe (diff)
downloadnixpkgs-2e502cce72a8e84b708a0351a8f770f093cfc0e9.tar
nixpkgs-2e502cce72a8e84b708a0351a8f770f093cfc0e9.tar.gz
nixpkgs-2e502cce72a8e84b708a0351a8f770f093cfc0e9.tar.bz2
nixpkgs-2e502cce72a8e84b708a0351a8f770f093cfc0e9.tar.lz
nixpkgs-2e502cce72a8e84b708a0351a8f770f093cfc0e9.tar.xz
nixpkgs-2e502cce72a8e84b708a0351a8f770f093cfc0e9.tar.zst
nixpkgs-2e502cce72a8e84b708a0351a8f770f093cfc0e9.zip
Merge pull request #158332 from InternetUnexplorer/phinger-cursors-fix-install
phinger-cursors: fix installPhase including env-vars in output
Diffstat (limited to 'pkgs/data/icons')
-rw-r--r--pkgs/data/icons/phinger-cursors/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/data/icons/phinger-cursors/default.nix b/pkgs/data/icons/phinger-cursors/default.nix
index 4252136cf46..5afd2fe228f 100644
--- a/pkgs/data/icons/phinger-cursors/default.nix
+++ b/pkgs/data/icons/phinger-cursors/default.nix
@@ -14,7 +14,7 @@ stdenvNoCC.mkDerivation rec {
   installPhase = ''
     runHook preInstall
     mkdir -p $out/share/icons
-    cp -r ./ $out/share/icons
+    cp -r ./phinger-cursors* $out/share/icons
     runHook postInstall
   '';