2018-08-20 21:31:18 +01:00
|
|
|
{ stdenv, fetchFromGitHub, pantheon }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-05 23:41:32 +01:00
|
|
|
pname = "elementary-wallpapers";
|
2018-08-20 21:31:18 +01:00
|
|
|
version = "5.3";
|
|
|
|
|
2019-08-05 23:41:32 +01:00
|
|
|
repoName = "wallpapers";
|
2018-08-20 21:31:18 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "elementary";
|
2019-08-05 23:41:32 +01:00
|
|
|
repo = repoName;
|
2018-08-20 21:31:18 +01:00
|
|
|
rev = version;
|
|
|
|
sha256 = "1i0zf9gzhwm8hgq5cp1xnxipqjvgzd9wfiicz612hgp6ivc0z0ag";
|
|
|
|
};
|
|
|
|
|
|
|
|
passthru = {
|
|
|
|
updateScript = pantheon.updateScript {
|
2019-08-05 23:41:32 +01:00
|
|
|
inherit repoName;
|
|
|
|
attrPath = pname;
|
2018-08-20 21:31:18 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
dontBuild = true;
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/share/backgrounds/elementary
|
|
|
|
cp -av *.jpg $out/share/backgrounds/elementary
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Collection of wallpapers for elementary";
|
|
|
|
homepage = https://github.com/elementary/wallpapers;
|
|
|
|
license = licenses.publicDomain;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = pantheon.maintainers;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|