nixpkgs/pkgs/tools/misc/ttygif/default.nix

24 lines
580 B
Nix
Raw Normal View History

2019-10-12 01:51:51 +02:00
{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
pname = "ttygif";
2020-05-10 21:58:03 +02:00
version = "1.5.0";
2019-10-12 01:51:51 +02:00
src = fetchFromGitHub {
owner = "icholy";
repo = pname;
rev = version;
2020-05-10 21:58:03 +02:00
sha256 = "1w9c3h6hik2gglwsw8ww63piy66i4zqr3273wh5rc9r2awiwh643";
2019-10-12 01:51:51 +02:00
};
2020-05-10 23:20:00 +02:00
makeFlags = [ "CC:=$(CC)" "PREFIX=${placeholder "out"}" ];
2019-10-12 01:51:51 +02:00
meta = with stdenv.lib; {
homepage = "https://github.com/icholy/ttygif";
description = "Convert terminal recordings to animated gifs";
2020-05-10 23:20:00 +02:00
platforms = platforms.unix;
2019-10-12 01:51:51 +02:00
license = licenses.mit;
maintainers = with maintainers; [ moaxcp ];
};
}