fedora-backgrounds: use stdenvNoCC (#106149)

No need for a C build environment when copying some backgrounds.
This commit is contained in:
Daniël de Kok 2020-12-07 19:49:58 +01:00 committed by GitHub
parent 47d5fd550f
commit 18a5777c77
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,4 +1,4 @@
{ stdenv
{ stdenvNoCC
, coreutils
}:
@ -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;
@ -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;