Merge pull request #64283 from tadeokondrak/adapta-backgrounds/update/0.5.3.1

adapta-backgrounds: 0.5.2.3 -> 0.5.3.1
This commit is contained in:
worldofpeace 2019-07-08 19:18:14 -04:00 committed by GitHub
commit 3752453b93
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1,23 +1,23 @@
{ stdenv, fetchFromGitHub, autoreconfHook }:
{ stdenv, fetchFromGitHub, meson, ninja, pkgconfig, glib }:
stdenv.mkDerivation rec {
name = "adapta-backgrounds-${version}";
version = "0.5.2.3";
pname = "adapta-backgrounds";
version = "0.5.3.1";
src = fetchFromGitHub {
owner = "adapta-project";
repo = "adapta-backgrounds";
rev = version;
sha256 = "0n0ggcxinja81lasmpviqq3l4jiwb05bs8r5aah1im2zvls1g007";
sha256 = "04hmbmzf97rsii8gpwy3wkljy5xhxmlsl34d63s6hfy05knclydj";
};
nativeBuildInputs = [ autoreconfHook ];
nativeBuildInputs = [ meson ninja pkgconfig glib ];
meta = with stdenv.lib; {
description = "Wallpaper collection for adapta-project";
homepage = https://github.com/adapta-project/adapta-backgrounds;
homepage = "https://github.com/adapta-project/adapta-backgrounds";
license = with licenses; [ gpl2 cc-by-sa-40 ];
platforms = platforms.all;
maintainers = [ maintainers.romildo ];
maintainers = with maintainers; [ romildo ];
};
}