nixpkgs/pkgs/tools/misc/vivid/default.nix

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

24 lines
645 B
Nix
Raw Normal View History

{ lib, fetchFromGitHub, rustPlatform }:
2018-12-03 14:15:57 +00:00
rustPlatform.buildRustPackage rec {
pname = "vivid";
version = "0.9.0";
2018-12-03 14:15:57 +00:00
src = fetchFromGitHub {
owner = "sharkdp";
repo = pname;
rev = "v${version}";
hash = "sha256-zNsNEXj/SaJaYsYvoOGPopLhJDfLIXSs7eeZDdJrHiQ=";
2018-12-03 14:15:57 +00:00
};
cargoHash = "sha256-gtqdQuf3Ybt0PDCQw3gGAzIROq39NJKPIat0lyIPGgg=";
2018-12-03 14:15:57 +00:00
meta = with lib; {
2018-12-03 14:15:57 +00:00
description = "A generator for LS_COLORS with support for multiple color themes";
homepage = "https://github.com/sharkdp/vivid";
2018-12-03 14:15:57 +00:00
license = with licenses; [ asl20 /* or */ mit ];
maintainers = [ maintainers.dtzWill ];
platforms = platforms.unix;
};
}