nixpkgs/pkgs/applications/video/peek/default.nix

30 lines
854 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, cmake, gettext, libxml2, pkgconfig, txt2man, vala, wrapGAppsHook
, gsettings-desktop-schemas, gtk3, keybinder3
}:
2017-11-28 00:25:21 +01:00
stdenv.mkDerivation rec {
name = "peek-${version}";
version = "1.3.1";
2017-11-28 00:25:21 +01:00
src = fetchFromGitHub {
owner = "phw";
repo = "peek";
rev = version;
sha256 = "1fnvlklmg6s5rs3ql74isa5fgdkqqrpsyf8k2spxj520239l4vgb";
2017-11-28 00:25:21 +01:00
};
nativeBuildInputs = [ cmake gettext pkgconfig libxml2.bin txt2man vala wrapGAppsHook ];
buildInputs = [ gsettings-desktop-schemas gtk3 keybinder3 ];
enableParallelBuilding = true;
2017-11-28 00:25:21 +01:00
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 = platforms.linux;
2017-11-28 00:25:21 +01:00
};
}