2025-07-26 11:39:35 +02:00

28 lines
619 B
Nix

{
lib,
fetchFromGitHub,
rustPlatform,
}:
rustPlatform.buildRustPackage rec {
pname = "termsnap";
version = "0.4.0";
src = fetchFromGitHub {
owner = "tomcur";
repo = "termsnap";
rev = "termsnap-v${version}";
hash = "sha256-bYqhrMmgkEAiA1eiDbIOwH/PktwtIfxmYJRwDrFsNIc=";
};
cargoHash = "sha256-lfWQ7VzFYhbEjrhKxPT8quhxbL+5pTzIPUVjBBHRk7Q=";
meta = with lib; {
description = "Create SVGs from terminal output";
homepage = "https://github.com/tomcur/termsnap";
license = licenses.mit;
maintainers = with maintainers; [ yash-garg ];
mainProgram = "termsnap";
};
}