lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 18.09-beta 29 lines 795 B view raw
1{ stdenv, fetchFromGitHub, buildGoPackage }: 2 3buildGoPackage rec { 4 name = "shadowfox-${version}"; 5 version = "1.5.2"; 6 7 src = fetchFromGitHub { 8 owner = "SrKomodo"; 9 repo = "shadowfox-updater"; 10 rev = "v${version}"; 11 sha256 = "07695hba72q722d18q75pwa45azg9jibj6vqnhwb7mnwz2i7hkkc"; 12 }; 13 14 goPackagePath = "github.com/SrKomodo/shadowfox-updater"; 15 goDeps = ./deps.nix; 16 17 buildFlags = "--tags release"; 18 19 meta = with stdenv.lib; { 20 description = '' 21 This project aims at creating a universal dark theme for Firefox while 22 adhering to the modern design principles set by Mozilla. 23 ''; 24 homepage = "https://overdodactyl.github.io/ShadowFox/"; 25 license = licenses.mit; 26 platforms = platforms.all; 27 maintainers = with maintainers; [ infinisil ]; 28 }; 29}