biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / misc / vivid / default.nix
blob4ec34be94f4ead5a22ef5f1a0b061da65bdc6af5
1 { lib, fetchFromGitHub, rustPlatform }:
3 rustPlatform.buildRustPackage rec {
4   pname = "vivid";
5   version = "0.10.1";
7   src = fetchFromGitHub {
8     owner = "sharkdp";
9     repo = pname;
10     rev = "v${version}";
11     hash = "sha256-mxBBfezaMM2dfiXK/s+Htr+i5GJP1xVSXzkmYxEuwNs=";
12   };
14   cargoHash = "sha256-B1PYLUtBcx35NkU/NR+CmM8bF0hfJWmu11vsovFwR+c=";
16   meta = with lib; {
17     description = "Generator for LS_COLORS with support for multiple color themes";
18     homepage = "https://github.com/sharkdp/vivid";
19     license = with licenses; [ asl20 /* or */ mit ];
20     maintainers = [ maintainers.dtzWill ];
21     platforms = platforms.unix;
22     mainProgram = "vivid";
23   };