summary refs log blame commit diff
path: root/pkgs/development/libraries/iksemel/default.nix
blob: 6ba64dcaa5888fa910cf905e7585320824d7c7c1 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
                                                                                       

                         
                    








                                                                    
                                                                    

                           
                    

                                          
                                                             




                                                     
{ lib, stdenv, autoreconfHook, libtool, pkg-config, gnutls, fetchFromGitHub, texinfo }:

stdenv.mkDerivation rec {
  pname = "iksemel";
  version = "1.4.2";

  src = fetchFromGitHub {
    owner = "timothytylee";
    repo = "iksemel-1.4";
    rev = "v${version}";
    sha256 = "1xv302p344hnpxqcgs3z6wwxhrik39ckgfw5cjyrw0dkf316z9yh";
  };

  nativeBuildInputs = [ pkg-config autoreconfHook libtool texinfo ];
  buildInputs = [ gnutls ];

  meta = with lib; {
    description = "XML parser for jabber";

    homepage = "https://github.com/timothytylee/iksemel-1.4";
    license = licenses.gpl2;
    maintainers = with maintainers; [ disassembler ];
    platforms = platforms.linux;
  };
}