Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / applications / misc / base16-universal-manager / default.nix
blob2ecbc5f4180996dad10eb938c91d8f7b79156747
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   };