python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / misc / ovh-ttyrec / default.nix
blob98d9ef201007c571a4f67cc6cf68cb9833e313c8
1 { lib, stdenv, fetchFromGitHub, zstd }:
3 stdenv.mkDerivation rec {
4   pname = "ovh-ttyrec";
5   version = "1.1.6.7";
7   src = fetchFromGitHub {
8     owner = "ovh";
9     repo = "ovh-ttyrec";
10     rev = "v${version}";
11     sha256 = "sha256-OkSs0Cu79u53+fN57px48f6kJKuOJLjGUar+lLTdUJU=";
12   };
14   nativeBuildInputs = [ zstd ];
16   installPhase = ''
17     mkdir -p $out/{bin,man}
18     cp ttytime ttyplay ttyrec $out/bin
19     cp docs/*.1 $out/man
20   '';
22   meta = with lib; {
23     homepage = "https://github.com/ovh/ovh-ttyrec/";
24     description = "Terminal interaction recorder and player";
25     license = licenses.bsd3;
26     platforms = platforms.all;
27     maintainers = with maintainers; [ chaduffy zimbatm ];
28   };