about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/networking/instant-messengers/pidgin-plugins/carbons/default.nix
blob: 60fd5af0a1ab030304bf531a592d0c3f71cd622f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ stdenv, libxml2, pidgin, pkgconfig, fetchFromGitHub } :

stdenv.mkDerivation rec {
  name = "pidgin-carbons-${version}";
  version = "0.1.3";

  src = fetchFromGitHub {
    owner = "gkdr";
    repo  = "carbons";
    rev   = "v${version}";
    sha256 = "05hcqvsirb7gnpfcszsrgal5q7dajl2wdi2dy7c41zgl377syavw";
  };

  makeFlags = [ "PURPLE_PLUGIN_DIR=$(out)/lib/pidgin" ];

  nativeBuildInputs = [ pkgconfig ];
  buildInputs = [ libxml2 pidgin ];

  meta = with stdenv.lib; {
    homepage = https://github.com/gkdr/carbons;
    description = "XEP-0280: Message Carbons plugin for libpurple";
    license = licenses.gpl2;
    platforms = platforms.linux;
    maintainers = with maintainers; [ jb55 ];
  };
}