ripasso-cursive: cosmetic changes (#361736)
[NixPkgs.git] / pkgs / by-name / ca / castty / package.nix
blob86dae729790b8934d1968c73a934f4d3b9fe633d
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     mainProgram = "castty";
28   };