mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
ttygif init at 1.4.0
This commit is contained in:
parent
8b57a7573c
commit
9f9bd573fe
23
pkgs/tools/misc/ttygif/default.nix
Normal file
23
pkgs/tools/misc/ttygif/default.nix
Normal file
@ -0,0 +1,23 @@
|
||||
{ stdenv, fetchFromGitHub }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "ttygif";
|
||||
version = "1.4.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "icholy";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "18l26iacpfn4xqqv1ai6ncabn83mqv98c48gl265gfld66y7zbzn";
|
||||
};
|
||||
|
||||
makeFlags = [ "PREFIX=${placeholder "out"}" ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = "https://github.com/icholy/ttygif";
|
||||
description = "Convert terminal recordings to animated gifs";
|
||||
platforms = platforms.linux;
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ moaxcp ];
|
||||
};
|
||||
}
|
@ -6648,6 +6648,8 @@ in
|
||||
|
||||
ttyrec = callPackage ../tools/misc/ttyrec { };
|
||||
|
||||
ttygif = callPackage ../tools/misc/ttygif { };
|
||||
|
||||
ttylog = callPackage ../tools/misc/ttylog { };
|
||||
|
||||
turses = callPackage ../applications/networking/instant-messengers/turses { };
|
||||
|
Loading…
Reference in New Issue
Block a user