nixos/tests/userborn: fix setting hostPlatform (#378940)
[NixPkgs.git] / pkgs / applications / networking / instant-messengers / pidgin / pidgin-plugins / purple-hangouts / default.nix
blob03efdd49513fd6e01ea31f81a1498c0f00764b18
2   lib,
3   stdenv,
4   fetchhg,
5   pidgin,
6   glib,
7   json-glib,
8   protobuf,
9   protobufc,
12 stdenv.mkDerivation {
13   pname = "purple-hangouts-hg";
14   version = "2018-12-02";
16   src = fetchhg {
17     url = "https://bitbucket.org/EionRobb/purple-hangouts/";
18     rev = "cccf2f6";
19     sha256 = "1zd1rlzqvw1zkb0ydyz039n3xa1kv1f20a4l6rkm9a8sp6rpf3pi";
20   };
22   buildInputs = [
23     pidgin
24     glib
25     json-glib
26     protobuf
27     protobufc
28   ];
30   PKG_CONFIG_PURPLE_PLUGINDIR = "${placeholder "out"}/lib/purple-2";
31   PKG_CONFIG_PURPLE_DATADIR = "${placeholder "out"}/share";
33   meta = with lib; {
34     homepage = "https://bitbucket.org/EionRobb/purple-hangouts";
35     description = "Native Hangouts support for pidgin";
36     license = licenses.gpl3;
37     platforms = platforms.linux;
38     maintainers = [ ];
39   };