nixpkgs/pkgs/applications/misc/colorstorm/default.nix
IogaMaster 631b5b9cc6 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>
2023-08-05 11:10:50 +00:00

30 lines
624 B
Nix

{ 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;
};
})