2021-01-25 09:26:54 +01:00
|
|
|
{ lib
|
2020-09-13 01:36:22 +02:00
|
|
|
, rustPlatform
|
|
|
|
, fetchCrate
|
|
|
|
}:
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "asciinema-scenario";
|
2022-06-18 06:21:09 +02:00
|
|
|
version = "0.3.0";
|
2020-09-13 01:36:22 +02:00
|
|
|
|
|
|
|
src = fetchCrate {
|
|
|
|
inherit pname version;
|
2022-06-18 06:21:09 +02:00
|
|
|
sha256 = "sha256-fnX5CIYLdFqi04PQPVIAYDGn+xXi016l8pPcIrYIhmQ=";
|
2020-09-13 01:36:22 +02:00
|
|
|
};
|
|
|
|
|
2022-06-18 06:21:09 +02:00
|
|
|
cargoSha256 = "sha256-8I3mPSJ5aXvQ88nh0SWyuTq9JSTktS2lQPrXlcvD66c=";
|
2020-09-13 01:36:22 +02:00
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2020-10-11 07:55:05 +02:00
|
|
|
description = "Create asciinema videos from a text file";
|
2020-09-13 01:36:22 +02:00
|
|
|
homepage = "https://github.com/garbas/asciinema-scenario/";
|
|
|
|
maintainers = with maintainers; [ garbas ];
|
|
|
|
license = with licenses; [ mit ];
|
|
|
|
};
|
|
|
|
}
|