mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-20 12:43:52 +00:00
43 lines
884 B
Nix
43 lines
884 B
Nix
|
{ stdenv
|
||
|
, coreutils
|
||
|
}:
|
||
|
|
||
|
{ version
|
||
|
, src
|
||
|
, patches ? [ ]
|
||
|
}:
|
||
|
|
||
|
stdenv.mkDerivation {
|
||
|
inherit patches src version;
|
||
|
|
||
|
pname = "fedora${stdenv.lib.versions.major version}-backgrounds";
|
||
|
|
||
|
dontBuild = true;
|
||
|
|
||
|
postPatch = ''
|
||
|
for f in default/Makefile extras/Makefile; do
|
||
|
substituteInPlace $f \
|
||
|
--replace "usr/share" "share" \
|
||
|
--replace "/usr/bin/" "" \
|
||
|
--replace "/bin/" ""
|
||
|
done
|
||
|
|
||
|
for f in $(find . -name '*.xml'); do
|
||
|
substituteInPlace $f \
|
||
|
--replace "/usr/share" "$out/share"
|
||
|
done;
|
||
|
'';
|
||
|
|
||
|
installFlags = [
|
||
|
"DESTDIR=$(out)"
|
||
|
];
|
||
|
|
||
|
meta = with stdenv.lib; {
|
||
|
homepage = "https://github.com/fedoradesign/backgrounds";
|
||
|
description = "A set of default and supplemental wallpapers for Fedora";
|
||
|
license = licenses.cc-by-sa-40;
|
||
|
platforms = platforms.unix;
|
||
|
maintainers = with maintainers; [ danieldk ];
|
||
|
};
|
||
|
}
|