nixpkgs/pkgs/applications/misc/colorstorm/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
659 B
Nix
Raw Normal View History

{ 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 = "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;
2024-02-11 02:19:15 +00:00
mainProgram = "colorstorm";
};
})