peek: init at 1.2.0

This commit is contained in:
Brian McKenna 2017-11-28 10:25:21 +11:00 committed by Orivej Desh
parent 7d69f11293
commit a0c5d084c6
2 changed files with 27 additions and 0 deletions

View file

@ -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;
};
}

View file

@ -16183,6 +16183,8 @@ with pkgs;
inherit (gst_all_1) gstreamer gst-plugins-base;
};
peek = callPackage ../applications/video/peek { };
pflask = callPackage ../os-specific/linux/pflask {};
photoqt = libsForQt5.callPackage ../applications/graphics/photoqt { };