Skip to content

Commit

Permalink
fedora-backgrounds: use stdenvNoCC (#106149)
Browse files Browse the repository at this point in the history
No need for a C build environment when copying some backgrounds.
  • Loading branch information
danieldk authored Dec 7, 2020
1 parent 47d5fd5 commit 18a5777
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pkgs/data/misc/fedora-backgrounds/generic.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ stdenv
{ stdenvNoCC
, coreutils
}:

Expand All @@ -7,10 +7,10 @@
, patches ? [ ]
}:

stdenv.mkDerivation {
stdenvNoCC.mkDerivation {
inherit patches src version;

pname = "fedora${stdenv.lib.versions.major version}-backgrounds";
pname = "fedora${stdenvNoCC.lib.versions.major version}-backgrounds";

dontBuild = true;

Expand All @@ -32,7 +32,7 @@ stdenv.mkDerivation {
"DESTDIR=$(out)"
];

meta = with stdenv.lib; {
meta = with stdenvNoCC.lib; {
homepage = "https://github.com/fedoradesign/backgrounds";
description = "A set of default and supplemental wallpapers for Fedora";
license = licenses.cc-by-sa-40;
Expand Down

0 comments on commit 18a5777

Please sign in to comment.