nixpkgs/pkgs/applications/misc/colorstorm/default.nix
2024-02-11 03:19:15 +01:00

31 lines
661 B
Nix

{ 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;
mainProgram = "colorstorm";
};
})