mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-04 03:03:42 +00:00
theattyr: init at 0.1.10 (#349329)
This commit is contained in:
commit
80e69cf440
31
pkgs/by-name/th/theattyr/package.nix
Normal file
31
pkgs/by-name/th/theattyr/package.nix
Normal file
@ -0,0 +1,31 @@
|
||||
{
|
||||
lib,
|
||||
rustPlatform,
|
||||
fetchFromGitHub,
|
||||
nix-update-script,
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "theattyr";
|
||||
version = "0.1.10";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "orhun";
|
||||
repo = "theattyr";
|
||||
rev = "refs/tags/v${version}";
|
||||
hash = "sha256-gqgoG5JwGecm8MEqH36BvJyLuh6nDao1d9ydX1AlbgU=";
|
||||
};
|
||||
|
||||
cargoHash = "sha256-LwJW1WTUa0iz4PeDOMmRr6H0XLhWOn9b4W3SUR+SHyc=";
|
||||
|
||||
passthru.updateScript = nix-update-script { };
|
||||
|
||||
meta = {
|
||||
description = "A terminal theater for playing VT100 art and animations";
|
||||
homepage = "https://github.com/orhun/theattyr";
|
||||
changelog = "https://github.com/orhun/theattyr/blob/${src.rev}/CHANGELOG.md";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [ a-kenji ];
|
||||
mainProgram = "theattyr";
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user