summary refs log tree commit diff
path: root/pkgs/data/icons/iso-flags
diff options
context:
space:
mode:
authorkilianar <mail@kilianar.de>2022-07-02 02:04:21 +0200
committersuperherointj <5861043+superherointj@users.noreply.github.com>2022-07-06 10:42:05 -0300
commite4c43186c4a5b3366e93c1299608709c03779c2c (patch)
tree69b91a154c26416ea086132b49cfcc97daf5767a /pkgs/data/icons/iso-flags
parent5a3eeeb9bb2ccd4ed31175cb45a6340a6dd0d13c (diff)
downloadnixpkgs-e4c43186c4a5b3366e93c1299608709c03779c2c.tar
nixpkgs-e4c43186c4a5b3366e93c1299608709c03779c2c.tar.gz
nixpkgs-e4c43186c4a5b3366e93c1299608709c03779c2c.tar.bz2
nixpkgs-e4c43186c4a5b3366e93c1299608709c03779c2c.tar.lz
nixpkgs-e4c43186c4a5b3366e93c1299608709c03779c2c.tar.xz
nixpkgs-e4c43186c4a5b3366e93c1299608709c03779c2c.tar.zst
nixpkgs-e4c43186c4a5b3366e93c1299608709c03779c2c.zip
pkgs/data/icons: use stdenvNoCC where possible
Most icons themes just copy a bunch of files from the source to the
installation directory and therefore work perfectly fine with
stdenvNoCC.
All themes in pkgs/data/icons that still use stdenv after this change
are failing to build with stdenvNoCC.
Diffstat (limited to 'pkgs/data/icons/iso-flags')
-rw-r--r--pkgs/data/icons/iso-flags/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/data/icons/iso-flags/default.nix b/pkgs/data/icons/iso-flags/default.nix
index 57cc1752f18..9deff6bcc77 100644
--- a/pkgs/data/icons/iso-flags/default.nix
+++ b/pkgs/data/icons/iso-flags/default.nix
@@ -1,4 +1,4 @@
-{ lib, stdenv
+{ lib, stdenvNoCC
 , fetchFromGitHub
 , perl
 , inkscape
@@ -6,7 +6,7 @@
 , targets ? [ "all" ]
 }:
 
-stdenv.mkDerivation {
+stdenvNoCC.mkDerivation {
   pname = "iso-flags";
   version = "unstable-18012020";