2c76a4cb41
GitOrigin-RevId: c757e9bd77b16ca2e03c89bf8bc9ecb28e0c06ad
23 lines
622 B
Nix
23 lines
622 B
Nix
{ lib, fetchFromGitHub, rustPlatform }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "presenterm";
|
|
version = "0.2.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mfontanini";
|
|
repo = "presenterm";
|
|
rev = "v${version}";
|
|
hash = "sha256-sXVMVU34gxZKGNye6hoyv07a7N7f6UbivA6thbSOeZA=";
|
|
};
|
|
|
|
cargoHash = "sha256-PsDaXMws/8hEvAZwClQ4okGuryg1iKg0IBr7Xp2QYBE=";
|
|
|
|
meta = with lib; {
|
|
description = "A terminal based slideshow tool";
|
|
homepage = "https://github.com/mfontanini/presenterm";
|
|
license = licenses.bsd2;
|
|
maintainers = with maintainers; [ mikaelfangel ];
|
|
mainProgram = "presenterm";
|
|
};
|
|
}
|