biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / applications / misc / base16-universal-manager / default.nix
blob98a255f873983058d76ef677846e7cf0a0a76068
1 { buildGoModule, fetchFromGitHub, lib }:
3 buildGoModule rec {
4   pname = "base16-universal-manager";
5   version = "1.0";
7   src = fetchFromGitHub {
8     owner = "pinpox";
9     repo = "base16-universal-manager";
10     rev = "v${version}";
11     hash = "sha256-9KflJ863j0VeOyu6j6O28VafetRrM8FW818qCvqhaoY=";
12   };
14   vendorHash = "sha256-U28OJ5heeiaj3aGAhR6eAXzfvFMehAUcHzyFkZBRK6c=";
16   meta = with lib; {
17     description = "A universal manager to set base16 themes for any supported application";
18     homepage = "https://github.com/pinpox/base16-universal-manager";
19     license = licenses.mit;
20     maintainers = with maintainers; [ jo1gi ];
21     mainProgram = "base16-universal-manager";
22   };