Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
27 lines
840 B
Nix
27 lines
840 B
Nix
{ lib, stdenv, fetchFromGitHub, pidgin, glib, json-glib, protobuf, protobufc }:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "purple-googlechat";
|
|
version = "unstable-2021-10-18";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "EionRobb";
|
|
repo = "purple-googlechat";
|
|
rev = "56ba7f79883eca67d37629d365776f6c0b40abdc";
|
|
sha256 = "sha256-iTYVgYI9+6rqqBl5goeEAXpK8FgHDv0MmPsV/82reWA=";
|
|
};
|
|
|
|
nativeBuildInputs = [ protobufc ];
|
|
buildInputs = [ pidgin glib json-glib protobuf ];
|
|
|
|
PKG_CONFIG_PURPLE_PLUGINDIR = "${placeholder "out"}/lib/purple-2";
|
|
PKG_CONFIG_PURPLE_DATADIR = "${placeholder "out"}/share";
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/EionRobb/purple-googlechat";
|
|
description = "Native Google Chat support for pidgin";
|
|
license = licenses.gpl3Plus;
|
|
platforms = platforms.linux;
|
|
maintainers = [ ];
|
|
};
|
|
}
|