at 23.11-beta 25 lines 721 B view raw
1{ lib, stdenv, fetchFromGitHub, meson, ninja, pkg-config, glib }: 2 3stdenv.mkDerivation rec { 4 pname = "adapta-backgrounds"; 5 version = "0.5.3.1"; 6 7 src = fetchFromGitHub { 8 owner = "adapta-project"; 9 repo = "adapta-backgrounds"; 10 rev = version; 11 sha256 = "04hmbmzf97rsii8gpwy3wkljy5xhxmlsl34d63s6hfy05knclydj"; 12 }; 13 14 strictDeps = true; 15 nativeBuildInputs = [ meson ninja pkg-config ]; 16 buildInputs = [ glib ]; 17 18 meta = with lib; { 19 description = "Wallpaper collection for adapta-project"; 20 homepage = "https://github.com/adapta-project/adapta-backgrounds"; 21 license = with licenses; [ gpl2 cc-by-sa-40 ]; 22 platforms = platforms.all; 23 maintainers = with maintainers; [ romildo ]; 24 }; 25}