mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 14:45:27 +00:00
983908ad9f
https://github.com/SrKomodo/shadowfox-updater/releases/tag/v2.0.0 https://github.com/SrKomodo/shadowfox-updater/releases/tag/v2.0.1
31 lines
831 B
Nix
31 lines
831 B
Nix
{ stdenv, fetchFromGitHub, buildGoModule }:
|
|
|
|
buildGoModule rec {
|
|
pname = "shadowfox";
|
|
version = "2.0.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "SrKomodo";
|
|
repo = "shadowfox-updater";
|
|
rev = "v${version}";
|
|
sha256 = "0j8ljnx281a5nwd3zpw7b25ndsxc26b52glk2hqhm5fh08f9w0d8";
|
|
};
|
|
|
|
goPackagePath = "github.com/SrKomodo/shadowfox-updater";
|
|
|
|
modSha256 = "0anxrff09r5aw3a11iph0gigmcbmpfczm8him6ly57ywfzc5c850";
|
|
|
|
buildFlags = "--tags release";
|
|
|
|
meta = with stdenv.lib; {
|
|
description = ''
|
|
This project aims at creating a universal dark theme for Firefox while
|
|
adhering to the modern design principles set by Mozilla.
|
|
'';
|
|
homepage = "https://overdodactyl.github.io/ShadowFox/";
|
|
license = licenses.mit;
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ infinisil ];
|
|
};
|
|
}
|