depot/pkgs/development/libraries/iksemel/default.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

25 lines
686 B
Nix

{ 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;
};
}