3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/libraries/iksemel/default.nix

26 lines
686 B
Nix
Raw Normal View History

{ lib, stdenv, autoreconfHook, libtool, pkg-config, gnutls, fetchFromGitHub, texinfo }:
2018-07-04 05:17:30 +01:00
stdenv.mkDerivation rec {
pname = "iksemel";
2018-07-04 05:17:30 +01:00
version = "1.4.2";
src = fetchFromGitHub {
owner = "timothytylee";
repo = "iksemel-1.4";
rev = "v${version}";
sha256 = "1xv302p344hnpxqcgs3z6wwxhrik39ckgfw5cjyrw0dkf316z9yh";
};
nativeBuildInputs = [ pkg-config autoreconfHook libtool texinfo ];
2018-07-04 05:17:30 +01:00
buildInputs = [ gnutls ];
meta = with lib; {
2018-07-04 05:17:30 +01:00
description = "XML parser for jabber";
homepage = "https://github.com/timothytylee/iksemel-1.4";
2018-07-04 05:17:30 +01:00
license = licenses.gpl2;
maintainers = with maintainers; [ disassembler ];
platforms = platforms.linux;
};
}