2021-01-25 09:26:54 +01:00
|
|
|
{ lib, fetchFromGitHub, buildGoModule }:
|
2018-06-27 23:57:14 +02:00
|
|
|
|
2019-04-22 06:06:31 +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
|
|
|
};
|
|
|
|
|
2022-01-31 23:08:40 +01:00
|
|
|
vendorSha256 = "17m0ssfw9n3g2lkv63qajz3adrk5yp0c9hx66x7dl79snwqd49yg";
|
2020-03-21 12:03:00 +01:00
|
|
|
|
2020-08-04 02:26:27 +02:00
|
|
|
doCheck = false;
|
|
|
|
|
2021-08-26 08:45:51 +02:00
|
|
|
ldflags = [
|
|
|
|
"-X main.tag=v${version}"
|
2020-09-12 23:36:03 +02:00
|
|
|
];
|
2018-06-27 23:57:14 +02:00
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2018-06-27 23:57:14 +02:00
|
|
|
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;
|
|
|
|
maintainers = with maintainers; [ infinisil ];
|
2022-04-01 21:34:55 +02:00
|
|
|
mainProgram = "shadowfox-updater";
|
2018-06-27 23:57:14 +02:00
|
|
|
};
|
2020-07-31 05:58:04 +02:00
|
|
|
}
|