2018-12-03 14:15:57 +00:00
|
|
|
{ stdenv, fetchFromGitHub, rustPlatform }:
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "vivid";
|
2019-12-04 23:34:08 +00:00
|
|
|
version = "0.5.0";
|
2018-12-03 14:15:57 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "sharkdp";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2019-12-04 23:34:08 +00:00
|
|
|
sha256 = "00xxk1ipr3hndd717q52j7s2wfxis1p4glaa9lvp72gwwzmv5k9w";
|
2018-12-03 14:15:57 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace src/main.rs --replace /usr/share $out/share
|
|
|
|
'';
|
|
|
|
|
2020-02-28 04:42:48 +00:00
|
|
|
cargoSha256 = "1l34i7qalid9mlcbpqhbb2bxgn2ylb2lwki4c0hf4kkq646ql0n1";
|
2018-12-03 14:15:57 +00:00
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
mkdir -p $out/share/${pname}
|
|
|
|
cp -rv config/* themes $out/share/${pname}
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A generator for LS_COLORS with support for multiple color themes";
|
2020-04-01 02:11:51 +01:00
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|