dotfiles/catppuccin/dircolors/vivid.nix

27 lines
638 B
Nix
Raw Normal View History

2023-02-10 07:46:37 +01:00
{
fetchFromGitHub,
lib,
pkgs,
rustPlatform,
}:
rustPlatform.buildRustPackage rec {
pname = "vivid";
version = "9299aa4c843bb7ed757b47bb2449abbba3aed793";
src = fetchFromGitHub {
owner = "sharkdp";
repo = "vivid";
rev = version;
sha256 = "sha256-gzl4ETkwnSuSKA0g7udOdFbnG1poXU/ZQyDJj/zqOV4=";
};
cargoSha256 = "sha256-fcH2gZr+ttldelWbYwsMUMy5ayrRTZwNsj2Jqhn1HTc=";
meta = with lib; {
description = "A themeable LS_COLORS generator with a rich filetype datebase";
homepage = "https://github.com/sharkdp/vivid";
license = licenses.asl20;
2023-02-10 07:46:37 +01:00
maintainers = [maintainers.nekowinston];
};
}