about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/misc/colorstorm/default.nix
blob: 0f78510aa2f6bd3cd7e34a94956e30ef1966aea8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{ lib
, stdenv
, fetchFromGitHub
, zig_0_9
}:

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 = [
    zig_0_9.hook
  ];

  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 (zig_0_9.meta) platforms;
  };
})