lol
1{ stdenv, autoreconfHook, libtool, pkgconfig, gnutls, fetchFromGitHub, texinfo }:
2
3stdenv.mkDerivation rec {
4 name = "iksemel-${version}";
5 version = "1.4.2";
6
7 src = fetchFromGitHub {
8 owner = "timothytylee";
9 repo = "iksemel-1.4";
10 rev = "v${version}";
11 sha256 = "1xv302p344hnpxqcgs3z6wwxhrik39ckgfw5cjyrw0dkf316z9yh";
12 };
13
14 nativeBuildInputs = [ pkgconfig autoreconfHook libtool texinfo ];
15 buildInputs = [ gnutls ];
16
17 meta = with stdenv.lib; {
18 description = "XML parser for jabber";
19
20 homepage = https://github.com/timothytylee/iksemel-1.4;
21 license = licenses.gpl2;
22 maintainers = with maintainers; [ disassembler ];
23 platforms = platforms.linux;
24 };
25}