about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/misc/capture/default.nix
blob: e92898ccc4d6292f79fb14db65876d9bd432c52a (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
{ stdenv, slop, ffmpeg_3, fetchFromGitHub, makeWrapper}:

stdenv.mkDerivation {
  pname = "capture-unstable";
  version = "2019-03-10";

  src = fetchFromGitHub {
    owner = "buhman";
    repo = "capture";
    rev  = "80dd9e7195aad5c132badef610f19509f3935b24";
    sha256 = "0zyyg4mvrny7cc2xgvfip97b6yc75ka5ni39rwls93971jbk83d6";
  };

  buildInputs = [ makeWrapper ];

  installPhase = ''
    install -Dm755 src/capture.sh $out/bin/capture

    patchShebangs $out/bin/capture
    wrapProgram $out/bin/capture \
      --prefix PATH : '${stdenv.lib.makeBinPath [ slop ffmpeg_3 ]}'
  '';

  meta = with stdenv.lib; {
    description = "A no bullshit screen capture tool";
    homepage = "https://github.com/buhman/capture";
    maintainers = [ maintainers.ar1a ];
    license = licenses.gpl3Plus;
  };
}