about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/misc/capture
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/tools/misc/capture')
-rw-r--r--nixpkgs/pkgs/tools/misc/capture/default.nix30
1 files changed, 30 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/tools/misc/capture/default.nix b/nixpkgs/pkgs/tools/misc/capture/default.nix
new file mode 100644
index 000000000000..e7134961c252
--- /dev/null
+++ b/nixpkgs/pkgs/tools/misc/capture/default.nix
@@ -0,0 +1,30 @@
+{ stdenv, slop, ffmpeg, 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 ]}'
+  '';
+
+  meta = with stdenv.lib; {
+    description = "A no bullshit screen capture tool";
+    homepage = "https://github.com/buhman/capture";
+    maintainers = [ maintainers.ar1a ];
+    license = licenses.gpl3Plus;
+  };
+}