2021-06-28 21:09:24 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, rustPlatform, libiconv, installShellFiles }:
|
2021-02-05 11:58:42 +00:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "flavours";
|
2023-05-02 19:30:39 +00:00
|
|
|
version = "0.7.1";
|
2021-02-05 11:58:42 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Misterio77";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2023-05-02 19:30:39 +00:00
|
|
|
hash = "sha256-SOsHvcfDdUpb0x5VZ1vZJnGaIiWWOPgnAwKYNXzfUfI=";
|
2021-02-05 11:58:42 +00:00
|
|
|
};
|
|
|
|
|
2021-06-30 01:47:07 +00:00
|
|
|
buildInputs = lib.optionals stdenv.isDarwin [ libiconv ];
|
2021-05-09 01:12:25 +00:00
|
|
|
|
2023-05-02 19:30:39 +00:00
|
|
|
cargoHash = "sha256-aimPeGIE5jP0pdrqwnzUzBqW0jz9+kcfpLdCN0r30xU=";
|
2021-06-28 21:09:24 +00:00
|
|
|
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
|
|
|
|
postInstall = ''
|
2021-06-30 01:41:31 +00:00
|
|
|
installShellCompletion --cmd flavours \
|
|
|
|
--zsh <($out/bin/flavours --completions zsh) \
|
|
|
|
--fish <($out/bin/flavours --completions fish) \
|
|
|
|
--bash <($out/bin/flavours --completions bash)
|
2021-06-28 21:09:24 +00:00
|
|
|
'';
|
2021-02-05 11:58:42 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
2024-06-07 07:46:46 +00:00
|
|
|
description = "Easy to use base16 scheme manager/builder that integrates with any workflow";
|
2021-02-05 11:58:42 +00:00
|
|
|
homepage = "https://github.com/Misterio77/flavours";
|
|
|
|
changelog = "https://github.com/Misterio77/flavours/releases/tag/v${version}";
|
|
|
|
license = licenses.mit;
|
2023-11-17 10:03:27 +00:00
|
|
|
maintainers = with maintainers; [ moni misterio77 ];
|
2024-02-11 02:19:15 +00:00
|
|
|
mainProgram = "flavours";
|
2021-02-05 11:58:42 +00:00
|
|
|
};
|
|
|
|
}
|