peek: disable on darwin, add optional dependencies
This commit is contained in:
parent
4cf3a494cc
commit
3db6d699d6
@ -1,5 +1,6 @@
|
|||||||
{ stdenv, fetchFromGitHub, cmake, pkgconfig, gettext, vala, gtk3, wrapGAppsHook
|
{ stdenv, fetchFromGitHub, cmake, gettext, libxml2, pkgconfig, txt2man, vala, wrapGAppsHook
|
||||||
, gsettings_desktop_schemas }:
|
, gsettings_desktop_schemas, gtk3, keybinder3
|
||||||
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "peek-${version}";
|
name = "peek-${version}";
|
||||||
@ -12,14 +13,17 @@ stdenv.mkDerivation rec {
|
|||||||
sha256 = "04sc6gfrqvnx288rmgsywpjx9l6jcfn2qdbwjcbdvx4wl3gna0qm";
|
sha256 = "04sc6gfrqvnx288rmgsywpjx9l6jcfn2qdbwjcbdvx4wl3gna0qm";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ cmake pkgconfig gettext wrapGAppsHook ];
|
nativeBuildInputs = [ cmake gettext pkgconfig libxml2.bin txt2man vala wrapGAppsHook ];
|
||||||
buildInputs = [ vala gtk3 gsettings_desktop_schemas ];
|
|
||||||
|
buildInputs = [ gsettings_desktop_schemas gtk3 keybinder3 ];
|
||||||
|
|
||||||
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
homepage = https://github.com/phw/peek;
|
homepage = https://github.com/phw/peek;
|
||||||
description = "Simple animated GIF screen recorder with an easy to use interface";
|
description = "Simple animated GIF screen recorder with an easy to use interface";
|
||||||
license = licenses.gpl3;
|
license = licenses.gpl3;
|
||||||
maintainers = with maintainers; [ puffnfresh ];
|
maintainers = with maintainers; [ puffnfresh ];
|
||||||
platforms = with platforms; unix;
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user