python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / misc / castty / default.nix
blob075c6d739b3f8b067c35d5b82a814ef3358717e2
1 { stdenv, lib, fetchFromGitHub, libsoundio, lame }:
3 stdenv.mkDerivation {
4   pname = "castty";
5   version = "unstable-2020-11-10";
7   src = fetchFromGitHub {
8     owner = "dhobsd";
9     repo = "castty";
10     rev = "333a2bafd96d56cd0bb91577ae5ba0f7d81b3d99";
11     sha256 = "0p84ivwsp8ds4drn0hx2ax04gp0xyq6blj1iqfsmrs4slrajdmqs";
12   };
14   buildInputs = [ libsoundio lame ];
16   makeFlags = [
17     "CC=${stdenv.cc.targetPrefix}cc"
18     "PREFIX=$(out)"
19   ];
21   meta = with lib; {
22     description = "CLI tool to record audio-enabled screencasts of your terminal, for the web";
23     homepage = "https://github.com/dhobsd/castty";
24     license = licenses.bsd3;
25     maintainers = with maintainers; [ iblech ];
26     platforms = platforms.unix;
27   };