nixpkgs/pkgs/tools/networking/shadowfox/default.nix

31 lines
831 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, buildGoModule }:
2018-06-27 23:57:14 +02:00
buildGoModule rec {
pname = "shadowfox";
2019-06-03 03:01:31 +02:00
version = "2.2.0";
2018-06-27 23:57:14 +02:00
src = fetchFromGitHub {
owner = "SrKomodo";
repo = "shadowfox-updater";
rev = "v${version}";
2019-06-03 03:01:31 +02:00
sha256 = "125mw70jidbp436arhv77201jdp6mpgqa2dzmrpmk55f9bf29sg6";
2018-06-27 23:57:14 +02:00
};
goPackagePath = "github.com/SrKomodo/shadowfox-updater";
2019-06-03 03:01:31 +02:00
modSha256 = "0hcc87mzacqwbw10l49kx0sxl4mivdr88c40wh6hdfvrbam2w86r";
2018-06-27 23:57:14 +02:00
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 ];
};
}