3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/networking/shadowfox/default.nix

31 lines
855 B
Nix
Raw Normal View History

2020-03-21 11:03:00 +00:00
{ stdenv, fetchFromGitHub, buildGoModule, Security }:
2018-06-27 22:57:14 +01:00
buildGoModule rec {
pname = "shadowfox";
2019-06-03 02:01:31 +01:00
version = "2.2.0";
2018-06-27 22:57:14 +01:00
src = fetchFromGitHub {
owner = "SrKomodo";
repo = "shadowfox-updater";
rev = "v${version}";
2019-06-03 02:01:31 +01:00
sha256 = "125mw70jidbp436arhv77201jdp6mpgqa2dzmrpmk55f9bf29sg6";
2018-06-27 22:57:14 +01:00
};
2019-06-03 02:01:31 +01:00
modSha256 = "0hcc87mzacqwbw10l49kx0sxl4mivdr88c40wh6hdfvrbam2w86r";
2018-06-27 22:57:14 +01:00
2020-03-21 11:03:00 +00:00
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ Security ];
buildFlags = [ "--tags" "release" ];
2018-06-27 22:57:14 +01:00
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 ];
};
}