about summary refs log tree commit diff
path: root/pkgs/tools/networking/shadowfox/default.nix
blob: eb2fe70cf4bab4246a2dcbefd81cfac1ac513cb4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{ stdenv, fetchFromGitHub, buildGoPackage }:

buildGoPackage rec {
  name = "shadowfox-${version}";
  version = "1.5.2";

  src = fetchFromGitHub {
    owner = "SrKomodo";
    repo = "shadowfox-updater";
    rev = "v${version}";
    sha256 = "07695hba72q722d18q75pwa45azg9jibj6vqnhwb7mnwz2i7hkkc";
  };

  goPackagePath = "github.com/SrKomodo/shadowfox-updater";
  goDeps = ./deps.nix;

  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 ];
  };
}