summary refs log tree commit diff
path: root/pkgs/applications/video/mkcast/default.nix
blob: 8c67b667a32474730ff0912064ed67e89919b13d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{ stdenv, fetchFromGitHub, wmctrl, pythonPackages, byzanz
, xdpyinfo, makeWrapper, gtk, xorg, gnome3 }:

stdenv.mkDerivation rec {
  name = "mkcast-2015-03-13";

  src = fetchFromGitHub {
    owner = "KeyboardFire";
    repo = "mkcast";
    rev = "cac22cb6c6f8ec2006339698af5e9199331759e0";
    sha256 = "15wp3n3z8gw7kjdxs4ahda17n844awhxsqbql5ipsdhqfxah2d8p";
  };

  buildInputs = with pythonPackages; [ makeWrapper pygtk gtk xlib ];

  makeFlags = [ "PREFIX=$(out)" ];

  postInstall = ''
    for f in $out/bin/*; do #*/
      wrapProgram $f --prefix PATH : "${xdpyinfo}/bin:${wmctrl}/bin/:${byzanz}/bin/:${gnome3.gnome_terminal}/bin/:$out/bin"
    done

    rm -r screenkey/.bzr
    cp -R screenkey $out/bin

    wrapProgram $out/bin/screenkey/screenkey \
      --prefix PATH : "${xorg.xmodmap}/bin"\
      --prefix PYTHONPATH : "$PYTHONPATH"
  '';

  meta = with stdenv.lib; {
    description = "A tool for creating GIF screencasts of a terminal, with key presses overlaid";
    homepage = https://github.com/KeyboardFire/mkcast;
    platforms = platforms.linux;
    maintainers = with maintainers; [ domenkozar pSub ];
  };
}