summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/misc/colorstorm
diff options
context:
space:
mode:
authorIogaMaster <iogamastercode@gmail.com>2023-07-05 21:51:28 -0600
committerAnderson Torres <torres.anderson.85@protonmail.com>2023-08-05 11:10:50 +0000
commit631b5b9cc6b2227c2a589dceb7856b29a55ea1c4 (patch)
tree0c7cd9f2aed3bf9d0fea035227241d6441216058 /pkgs/applications/misc/colorstorm
parent29b89132fb4fa7a21785478cd5c83fe343b00a01 (diff)
colorstorm: init at 2.0.0
It's a color theme generator for editors and terminal emulators, rewritten in Zig. Co-authored-by: IogaMaster <iogamastercode@gmail.com> Co-authored-by: figsoda <figsoda@pm.me>
Diffstat (limited to 'pkgs/applications/misc/colorstorm')
-rw-r--r--pkgs/applications/misc/colorstorm/default.nix29
1 files changed, 29 insertions, 0 deletions
diff --git a/pkgs/applications/misc/colorstorm/default.nix b/pkgs/applications/misc/colorstorm/default.nix
new file mode 100644
index 000000000000..540d315d6371
--- /dev/null
+++ b/pkgs/applications/misc/colorstorm/default.nix
@@ -0,0 +1,29 @@
+{ lib
+, stdenv
+, fetchFromGitHub
+, zigHook
+}:
+
+stdenv.mkDerivation (finalAttrs: {
+ pname = "colorstorm";
+ version = "2.0.0";
+
+ src = fetchFromGitHub {
+ owner = "benbusby";
+ repo = "colorstorm";
+ rev = "v${finalAttrs.version}";
+ hash = "sha256-6+P+QQpP1jxsydqhVrZkjl1gaqNcx4kS2994hOBhtu8=";
+ };
+
+ nativeBuildInputs = [
+ zigHook
+ ];
+
+ meta = {
+ description = "A color theme generator for editors and terminal emulators";
+ homepage = "https://github.com/benbusby/colorstorm";
+ license = lib.licenses.mit;
+ maintainers = with lib.maintainers; [ ];
+ inherit (zigHook.meta) platforms;
+ };
+})