Skip to content

Commit

Permalink
asciinema-scenario: init at 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
garbas committed Sep 12, 2020
1 parent d352574 commit c614283
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
23 changes: 23 additions & 0 deletions pkgs/tools/misc/asciinema-scenario/default.nix
@@ -0,0 +1,23 @@
{ stdenv
, rustPlatform
, fetchCrate
}:

rustPlatform.buildRustPackage rec {
pname = "asciinema-scenario";
version = "0.1.0";

src = fetchCrate {
inherit pname version;
sha256 = "sha256-ubiVpKFU81Ot9V9oMexWSiUXHepoJ6nXtrWVAFhgcYw=";
};

cargoSha256 = "109ij5h31bhn44l0wywgpnnlfjgyairxr5l19s6bz47sbka0xyxk";

meta = with stdenv.lib; {
description = "Create asciinema videos from a text file.";
homepage = "https://github.com/garbas/asciinema-scenario/";
maintainers = with maintainers; [ garbas ];
license = with licenses; [ mit ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -772,6 +772,8 @@ in

asciinema = callPackage ../tools/misc/asciinema {};

asciinema-scenario = callPackage ../tools/misc/asciinema-scenario {};

asciiquarium = callPackage ../applications/misc/asciiquarium {};

ashuffle = callPackage ../applications/audio/ashuffle {};
Expand Down

0 comments on commit c614283

Please sign in to comment.