diff --git a/pkgs/applications/video/peek/default.nix b/pkgs/applications/video/peek/default.nix index f195c2017f0d..d55f0aa1b35b 100644 --- a/pkgs/applications/video/peek/default.nix +++ b/pkgs/applications/video/peek/default.nix @@ -1,5 +1,6 @@ -{ stdenv, fetchFromGitHub, cmake, pkgconfig, gettext, vala, gtk3, wrapGAppsHook -, gsettings_desktop_schemas }: +{ stdenv, fetchFromGitHub, cmake, gettext, libxml2, pkgconfig, txt2man, vala, wrapGAppsHook +, gsettings_desktop_schemas, gtk3, keybinder3 +}: stdenv.mkDerivation rec { name = "peek-${version}"; @@ -12,14 +13,17 @@ stdenv.mkDerivation rec { sha256 = "04sc6gfrqvnx288rmgsywpjx9l6jcfn2qdbwjcbdvx4wl3gna0qm"; }; - nativeBuildInputs = [ cmake pkgconfig gettext wrapGAppsHook ]; - buildInputs = [ vala gtk3 gsettings_desktop_schemas ]; + nativeBuildInputs = [ cmake gettext pkgconfig libxml2.bin txt2man vala wrapGAppsHook ]; + + buildInputs = [ gsettings_desktop_schemas gtk3 keybinder3 ]; + + enableParallelBuilding = true; 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; + platforms = platforms.linux; }; }