066db11215
This reverts commit4e6bf03504
, reversing changes made toafd997aab6
. Instead we propagate those frameworks from the compiler again
31 lines
837 B
Nix
31 lines
837 B
Nix
{ stdenv, fetchFromGitHub, buildGoModule }:
|
|
|
|
buildGoModule rec {
|
|
pname = "shadowfox";
|
|
version = "2.2.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "SrKomodo";
|
|
repo = "shadowfox-updater";
|
|
rev = "v${version}";
|
|
sha256 = "125mw70jidbp436arhv77201jdp6mpgqa2dzmrpmk55f9bf29sg6";
|
|
};
|
|
|
|
goPackagePath = "github.com/SrKomodo/shadowfox-updater";
|
|
|
|
modSha256 = "0hcc87mzacqwbw10l49kx0sxl4mivdr88c40wh6hdfvrbam2w86r";
|
|
|
|
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 ];
|
|
};
|
|
}
|