nixpkgs/pkgs/applications/misc/base16-universal-manager/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
685 B
Nix
Raw Normal View History

2021-05-27 07:50:52 +00:00
{ buildGoModule, fetchFromGitHub, lib }:
buildGoModule rec {
pname = "base16-universal-manager";
version = "1.0";
src = fetchFromGitHub {
owner = "pinpox";
repo = "base16-universal-manager";
rev = "v${version}";
2023-08-12 03:51:20 +00:00
hash = "sha256-9KflJ863j0VeOyu6j6O28VafetRrM8FW818qCvqhaoY=";
2021-05-27 07:50:52 +00:00
};
2023-08-12 03:51:20 +00:00
vendorHash = "sha256-U28OJ5heeiaj3aGAhR6eAXzfvFMehAUcHzyFkZBRK6c=";
2021-05-27 07:50:52 +00:00
meta = with lib; {
description = "A universal manager to set base16 themes for any supported application";
homepage = "https://github.com/pinpox/base16-universal-manager";
license = licenses.mit;
maintainers = with maintainers; [ jo1gi ];
2024-02-11 02:19:15 +00:00
mainProgram = "base16-universal-manager";
2021-05-27 07:50:52 +00:00
};
}