Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / applications / misc / colorstorm / default.nix
blob0f78510aa2f6bd3cd7e34a94956e30ef1966aea8
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 = "A color theme generator for editors and terminal emulators";
24     homepage = "https://github.com/benbusby/colorstorm";
25     license = lib.licenses.mit;
26     maintainers = with lib.maintainers; [ ];
27     inherit (zig_0_9.meta) platforms;
28   };