base16-schemes: unstable-2024-06-21 -> unstable-2024-11-12
[NixPkgs.git] / pkgs / by-name / as / asciinema-scenario / package.nix
blob99446e2ac0c224872bf35fa769909f1462ee3f49
1 { lib
2 , rustPlatform
3 , fetchCrate
4 }:
6 rustPlatform.buildRustPackage rec {
7   pname = "asciinema-scenario";
8   version = "0.3.0";
10   src = fetchCrate {
11     inherit pname version;
12     hash = "sha256-fnX5CIYLdFqi04PQPVIAYDGn+xXi016l8pPcIrYIhmQ=";
13   };
15   cargoHash = "sha256-8I3mPSJ5aXvQ88nh0SWyuTq9JSTktS2lQPrXlcvD66c=";
17   meta = with lib; {
18     description = "Create asciinema videos from a text file";
19     homepage = "https://github.com/garbas/asciinema-scenario/";
20     maintainers = with maintainers; [ garbas ];
21     license = with licenses; [ mit ];
22     mainProgram = "asciinema-scenario";
23   };