about summary refs log tree commit diff
path: root/pkgs/applications/misc
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2021-06-09 12:55:27 +0200
committerGitHub <noreply@github.com>2021-06-09 12:55:27 +0200
commitb8a0f46db5e9ea5391485b4a5bffcbe05244636f (patch)
tree673268f401d6c1e065b342252d234189a145e5df /pkgs/applications/misc
parent476f69bc5ef346c4f15f51a0ddb2f831155625d2 (diff)
parentdab5fdee817180e15b71d711a8484c02da111f34 (diff)
Merge pull request #121995 from jo1gi/add-base16-universal-manager
Diffstat (limited to 'pkgs/applications/misc')
-rw-r--r--pkgs/applications/misc/base16-universal-manager/default.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/applications/misc/base16-universal-manager/default.nix b/pkgs/applications/misc/base16-universal-manager/default.nix
new file mode 100644
index 0000000000000..3d43a28709457
--- /dev/null
+++ b/pkgs/applications/misc/base16-universal-manager/default.nix
@@ -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 ];
+  };
+}