summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/video/peek
diff options
context:
space:
mode:
authorBrian McKenna <bmckenna@atlassian.com>2017-11-28 10:25:21 +1100
committerOrivej Desh <orivej@gmx.fr>2017-11-28 23:53:55 +0000
commita0c5d084c6e66f0648604a55f7ccd068b1341721 (patch)
tree1450b778f99815221f2015179e174f675c49f33d /pkgs/applications/video/peek
parent7d69f112937aa003120fda80d95b24f803d9285b (diff)
peek: init at 1.2.0
Diffstat (limited to 'pkgs/applications/video/peek')
-rw-r--r--pkgs/applications/video/peek/default.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/pkgs/applications/video/peek/default.nix b/pkgs/applications/video/peek/default.nix
new file mode 100644
index 000000000000..f195c2017f0d
--- /dev/null
+++ b/pkgs/applications/video/peek/default.nix
@@ -0,0 +1,25 @@
+{ stdenv, fetchFromGitHub, cmake, pkgconfig, gettext, vala, gtk3, wrapGAppsHook
+, gsettings_desktop_schemas }:
+
+stdenv.mkDerivation rec {
+ name = "peek-${version}";
+ version = "1.2.0";
+
+ src = fetchFromGitHub {
+ owner = "phw";
+ repo = "peek";
+ rev = version;
+ sha256 = "04sc6gfrqvnx288rmgsywpjx9l6jcfn2qdbwjcbdvx4wl3gna0qm";
+ };
+
+ nativeBuildInputs = [ cmake pkgconfig gettext wrapGAppsHook ];
+ buildInputs = [ vala gtk3 gsettings_desktop_schemas ];
+
+ meta = with stdenv.lib; {
+ homepage = https://github.com/phw/peek;
+ description = "Simple animated GIF screen recorder with an easy to use interface";
+ license = licenses.gpl3;
+ maintainers = with maintainers; [ puffnfresh ];
+ platforms = with platforms; unix;
+ };
+}