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