nixpkgs/pkgs/by-name/as/asciinema-scenario/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
598 B
Nix
Raw Normal View History

{ lib
2020-09-12 23:36:22 +00:00
, rustPlatform
, fetchCrate
}:
rustPlatform.buildRustPackage rec {
pname = "asciinema-scenario";
version = "0.3.0";
2020-09-12 23:36:22 +00:00
src = fetchCrate {
inherit pname version;
hash = "sha256-fnX5CIYLdFqi04PQPVIAYDGn+xXi016l8pPcIrYIhmQ=";
2020-09-12 23:36:22 +00:00
};
cargoHash = "sha256-8I3mPSJ5aXvQ88nh0SWyuTq9JSTktS2lQPrXlcvD66c=";
2020-09-12 23:36:22 +00:00
meta = with lib; {
description = "Create asciinema videos from a text file";
2020-09-12 23:36:22 +00:00
homepage = "https://github.com/garbas/asciinema-scenario/";
maintainers = with maintainers; [ garbas ];
license = with licenses; [ mit ];
2023-11-27 01:17:53 +00:00
mainProgram = "asciinema-scenario";
2020-09-12 23:36:22 +00:00
};
}