fedora-backgrounds: use stdenvNoCC (#106149)
No need for a C build environment when copying some backgrounds.
This commit is contained in:
parent
47d5fd550f
commit
18a5777c77
1 changed files with 4 additions and 4 deletions
|
@ -1,4 +1,4 @@
|
||||||
{ stdenv
|
{ stdenvNoCC
|
||||||
, coreutils
|
, coreutils
|
||||||
}:
|
}:
|
||||||
|
|
||||||
|
@ -7,10 +7,10 @@
|
||||||
, patches ? [ ]
|
, patches ? [ ]
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenvNoCC.mkDerivation {
|
||||||
inherit patches src version;
|
inherit patches src version;
|
||||||
|
|
||||||
pname = "fedora${stdenv.lib.versions.major version}-backgrounds";
|
pname = "fedora${stdenvNoCC.lib.versions.major version}-backgrounds";
|
||||||
|
|
||||||
dontBuild = true;
|
dontBuild = true;
|
||||||
|
|
||||||
|
@ -32,7 +32,7 @@ stdenv.mkDerivation {
|
||||||
"DESTDIR=$(out)"
|
"DESTDIR=$(out)"
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenvNoCC.lib; {
|
||||||
homepage = "https://github.com/fedoradesign/backgrounds";
|
homepage = "https://github.com/fedoradesign/backgrounds";
|
||||||
description = "A set of default and supplemental wallpapers for Fedora";
|
description = "A set of default and supplemental wallpapers for Fedora";
|
||||||
license = licenses.cc-by-sa-40;
|
license = licenses.cc-by-sa-40;
|
||||||
|
|
Loading…
Reference in a new issue