calls: 0.1.5 -> 0.2.0

This commit is contained in:
Pacman99 2021-01-21 09:50:31 -07:00
parent d44ccc878f
commit 24552931d8
1 changed files with 13 additions and 6 deletions

View File

@ -1,13 +1,17 @@
{ lib, stdenv { lib
, stdenv
, fetchFromGitLab , fetchFromGitLab
, meson , meson
, ninja , ninja
, cmake
, pkg-config , pkg-config
, libhandy_0 , libhandy
, modemmanager , modemmanager
, gtk3 , gtk3
, gom , gom
, gsound , gsound
, feedbackd
, callaudiod
, evolution-data-server , evolution-data-server
, folks , folks
, desktop-file-utils , desktop-file-utils
@ -22,14 +26,14 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "calls"; pname = "calls";
version = "0.1.5"; version = "0.2.0";
src = fetchFromGitLab { src = fetchFromGitLab {
domain = "source.puri.sm"; domain = "source.puri.sm";
owner = "Librem5"; owner = "Librem5";
repo = "calls"; repo = pname;
rev = "v${version}"; rev = "v${version}";
sha256 = "1wqkczl1fn4d2py00fsb6kh05avmc7c49gi49j3592fqsvi87j18"; sha256 = "1qmjdhnr95dawccw1ss8hc3lk0cypj86xg2amjq7avzn86ryd76l";
}; };
nativeBuildInputs = [ nativeBuildInputs = [
@ -38,16 +42,19 @@ stdenv.mkDerivation rec {
pkg-config pkg-config
desktop-file-utils desktop-file-utils
vala vala
cmake
wrapGAppsHook wrapGAppsHook
]; ];
buildInputs = [ buildInputs = [
modemmanager modemmanager
libhandy_0 libhandy
evolution-data-server evolution-data-server
folks folks
gom gom
gsound gsound
feedbackd
callaudiod
gtk3 gtk3
libpeas libpeas
]; ];