mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-05 21:33:07 +00:00
8a942da086
Diff: https://github.com/stepchowfun/typical/compare/v0.9.6...v0.9.7 Changelog: https://github.com/stepchowfun/typical/blob/v0.9.7/CHANGELOG.md
44 lines
1.1 KiB
Nix
44 lines
1.1 KiB
Nix
{ lib
|
|
, rustPlatform
|
|
, fetchFromGitHub
|
|
, installShellFiles
|
|
, stdenv
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "typical";
|
|
version = "0.9.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "stepchowfun";
|
|
repo = "typical";
|
|
rev = "v${version}";
|
|
hash = "sha256-UoTzgYxLdlWefNLeege7+tlqWh4uzotO5EbcyqvU2Xo=";
|
|
};
|
|
|
|
cargoHash = "sha256-GIyvwByzNKFvEdVSLo2cxuQ7JvKRFezhyKQrWjbj7Kk=";
|
|
|
|
nativeBuildInputs = [
|
|
installShellFiles
|
|
];
|
|
|
|
preCheck = ''
|
|
export NO_COLOR=true
|
|
'';
|
|
|
|
postInstall = lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) ''
|
|
installShellCompletion --cmd typical \
|
|
--bash <($out/bin/typical shell-completion bash) \
|
|
--fish <($out/bin/typical shell-completion fish) \
|
|
--zsh <($out/bin/typical shell-completion zsh)
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Data interchange with algebraic data types";
|
|
homepage = "https://github.com/stepchowfun/typical";
|
|
changelog = "https://github.com/stepchowfun/typical/blob/${src.rev}/CHANGELOG.md";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ figsoda ];
|
|
};
|
|
}
|