at 18.03-beta 23 lines 655 B view raw
1{ stdenv, fetchFromGitHub, autoreconfHook }: 2 3stdenv.mkDerivation rec { 4 name = "adapta-backgrounds-${version}"; 5 version = "0.5.2.3"; 6 7 src = fetchFromGitHub { 8 owner = "adapta-project"; 9 repo = "adapta-backgrounds"; 10 rev = version; 11 sha256 = "0n0ggcxinja81lasmpviqq3l4jiwb05bs8r5aah1im2zvls1g007"; 12 }; 13 14 nativeBuildInputs = [ autoreconfHook ]; 15 16 meta = with stdenv.lib; { 17 description = "Wallpaper collection for adapta-project"; 18 homepage = https://github.com/adapta-project/adapta-backgrounds; 19 license = with licenses; [ gpl2 cc-by-sa-40 ]; 20 platforms = platforms.all; 21 maintainers = [ maintainers.romildo ]; 22 }; 23}