forked from mirrors/nixpkgs
base16-universal-manager: init at 1.0
This commit is contained in:
parent
e23a9584fc
commit
dab5fdee81
pkgs
22
pkgs/applications/misc/base16-universal-manager/default.nix
Normal file
22
pkgs/applications/misc/base16-universal-manager/default.nix
Normal file
|
@ -0,0 +1,22 @@
|
|||
{ buildGoModule, fetchFromGitHub, lib }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "base16-universal-manager";
|
||||
version = "1.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "pinpox";
|
||||
repo = "base16-universal-manager";
|
||||
rev = "v${version}";
|
||||
sha256 = "11kal7x0lajzydbc2cvbsix9ympinsiqzfib7dg4b3xprqkyb9zl";
|
||||
};
|
||||
|
||||
vendorSha256 = "19rba689319w3wf0b10yafydyz01kqg8b051vnijcyjyk0khwvsk";
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
|
@ -1189,6 +1189,8 @@ in
|
|||
|
||||
barman = python3Packages.callPackage ../tools/misc/barman { };
|
||||
|
||||
base16-universal-manager = callPackage ../applications/misc/base16-universal-manager { };
|
||||
|
||||
bashate = python3Packages.callPackage ../development/tools/bashate { };
|
||||
|
||||
bash-my-aws = callPackage ../tools/admin/bash-my-aws { };
|
||||
|
|
Loading…
Reference in a new issue