Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / libraries / iksemel / default.nix
blob6ba64dcaa5888fa910cf905e7585320824d7c7c1
1 { lib, stdenv, autoreconfHook, libtool, pkg-config, gnutls, fetchFromGitHub, texinfo }:
3 stdenv.mkDerivation rec {
4   pname = "iksemel";
5   version = "1.4.2";
7   src = fetchFromGitHub {
8     owner = "timothytylee";
9     repo = "iksemel-1.4";
10     rev = "v${version}";
11     sha256 = "1xv302p344hnpxqcgs3z6wwxhrik39ckgfw5cjyrw0dkf316z9yh";
12   };
14   nativeBuildInputs = [ pkg-config autoreconfHook libtool texinfo ];
15   buildInputs = [ gnutls ];
17   meta = with lib; {
18     description = "XML parser for jabber";
20     homepage = "https://github.com/timothytylee/iksemel-1.4";
21     license = licenses.gpl2;
22     maintainers = with maintainers; [ disassembler ];
23     platforms = platforms.linux;
24   };