about summary refs log tree commit diff
path: root/pkgs/applications/video/simplescreenrecorder
diff options
context:
space:
mode:
authorCillian de Róiste <goibhniu@fsfe.org>2014-03-26 23:02:15 +0100
committerCillian de Róiste <goibhniu@fsfe.org>2014-03-26 23:02:33 +0100
commitde3b5b450076b3f881359646a32268baaa14ce5c (patch)
tree03f04b122799fac478c02156af74f1171243a883 /pkgs/applications/video/simplescreenrecorder
parent62793a007db2911cadebfc738d5415d7cc2cacbf (diff)
Add simplescreenrecorder: an excellent screen recorder for linux
Diffstat (limited to 'pkgs/applications/video/simplescreenrecorder')
-rw-r--r--pkgs/applications/video/simplescreenrecorder/default.nix26
1 files changed, 26 insertions, 0 deletions
diff --git a/pkgs/applications/video/simplescreenrecorder/default.nix b/pkgs/applications/video/simplescreenrecorder/default.nix
new file mode 100644
index 0000000000000..3251127c7a191
--- /dev/null
+++ b/pkgs/applications/video/simplescreenrecorder/default.nix
@@ -0,0 +1,26 @@
+{ stdenv, fetchurl, alsaLib, ffmpeg, jackaudio, libX11, libXext
+, libXfixes, mesa, pkgconfig, pulseaudio, qt4
+}:
+
+stdenv.mkDerivation rec {
+  name = "simplescreenrecorder-${version}";
+  version = "0.2.2";
+
+  src = fetchurl {
+    url = "https://github.com/MaartenBaert/ssr/archive/${version}.tar.gz";
+    sha256 = "0k1r1ilpk05qmwpnld95zxxk57qvyaq2r9f4i3la7y0xh9bz1gls";
+  };
+
+  buildInputs = [
+    alsaLib ffmpeg jackaudio libX11 libXext libXfixes mesa pkgconfig
+    pulseaudio qt4
+  ];
+
+  meta = with stdenv.lib; {
+    description = "A screen recorder for Linux";
+    homepage = http://www.maartenbaert.be/simplescreenrecorder;
+    license = licenses.gpl3;
+    platforms = platforms.linux;
+    maintainers = [ maintainers.goibhniu ];
+  };
+}