biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / misc / colorstorm / default.nix
blobda612b33c2baf3bd44355c32003a0cd707454b49
1 { lib
2 , stdenv
3 , fetchFromGitHub
4 , zig_0_9
5 }:
7 stdenv.mkDerivation (finalAttrs: {
8   pname = "colorstorm";
9   version = "2.0.0";
11   src = fetchFromGitHub {
12     owner = "benbusby";
13     repo = "colorstorm";
14     rev = "v${finalAttrs.version}";
15     hash = "sha256-6+P+QQpP1jxsydqhVrZkjl1gaqNcx4kS2994hOBhtu8=";
16   };
18   nativeBuildInputs = [
19     zig_0_9.hook
20   ];
22   meta = {
23     description = "Color theme generator for editors and terminal emulators";
24     homepage = "https://github.com/benbusby/colorstorm";
25     license = lib.licenses.mit;
26     maintainers = [ ];
27     inherit (zig_0_9.meta) platforms;
28     mainProgram = "colorstorm";
29   };