Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 9dbbfb78c50b
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 9fe897c1ece8
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Nov 11, 2019

  1. Copy the full SHA
    9fe897c View commit details
Showing with 10 additions and 6 deletions.
  1. +10 −6 pkgs/applications/networking/calls/default.nix
16 changes: 10 additions & 6 deletions pkgs/applications/networking/calls/default.nix
Original file line number Diff line number Diff line change
@@ -9,52 +9,56 @@
, gom
, gsound
, evolution-data-server
, folks
, desktop-file-utils
, libpeas
, dbus
, vala
, xorg
, xvfb_run
, libxml2
}:

stdenv.mkDerivation rec {
pname = "calls-unstable";
version = "2019-10-09";
pname = "calls";
version = "unstable-2019-10-29";

src = fetchFromGitLab {
domain = "source.puri.sm";
owner = "Librem5";
repo = "calls";
rev = "4b4cfa04266ebbe2f3da5abd9624ea07aa159fea";
sha256 = "0qvnddjpkh6gsywzdi24lmjlbwi0q54m1xa6hiaf1ch1j7kcv8fr";
rev = "9fe575053d8f01c3a76a6c20d39f0816166d5afd";
sha256 = "01inx4mvrzvklwrfryw5hw9p89v8cn78m3qmv97g7a3v0h5c0n35";
};

nativeBuildInputs = [
meson
ninja
pkgconfig
desktop-file-utils
vala
];

buildInputs = [
modemmanager
libhandy
evolution-data-server
folks
gom
gsound
gtk3
libhandy
libpeas
libxml2
];

checkInputs = [
dbus
xvfb_run
xorg.xauth
];

mesonFlags = [
# docs fail to build
# https://source.puri.sm/Librem5/calls/issues/99
"-Dgtk_doc=false"
];