gnomeExtensions.EasyScreenCast: fix build

It needs intltool-extract.
This commit is contained in:
Lin Jian 2023-03-26 17:46:31 +08:00
parent 953d8c5b59
commit adbd2bd426
No known key found for this signature in database
GPG key ID: A6698D36434F75A5

View file

@ -1,4 +1,4 @@
{ lib, stdenv, fetchFromGitHub, substituteAll, glib, gnome, gettext, jq }:
{ lib, stdenv, fetchFromGitHub, substituteAll, glib, gnome, gettext, jq, intltool }:
stdenv.mkDerivation rec {
pname = "gnome-shell-extension-EasyScreenCast";
@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
];
nativeBuildInputs = [
glib gettext jq
glib gettext jq intltool
];
makeFlags = [ "INSTALLBASE=$(out)/share/gnome-shell/extensions" ];