at 15.09-beta 33 lines 969 B view raw
1{ fetchgit, stdenv, pth, libgpgerror, autoconf, automake, libtool }: 2 3stdenv.mkDerivation rec { 4 name = "libassuan-2.1pre-git20120407"; 5 6 src = fetchgit { 7 url = "git://git.gnupg.org/libassuan.git"; 8 rev = "5c00c7cc2901a879927a5756e1bb7ecf49439ebc"; 9 sha256 = "14ebcc65930360a067eea8cfbdaa5418c909bd9dfb27fe366edf78ad6c1aa69f"; 10 }; 11 12 propagatedBuildInputs = [ pth libgpgerror ]; 13 buildInputs = [ autoconf automake libtool ]; 14 15 doCheck = true; 16 17 preConfigure = "autoreconf -v"; 18 19 meta = { 20 description = "Libassuan, the IPC library used by GnuPG and related software"; 21 22 longDescription = '' 23 Libassuan is a small library implementing the so-called Assuan 24 protocol. This protocol is used for IPC between most newer 25 GnuPG components. Both, server and client side functions are 26 provided. 27 ''; 28 29 homepage = http://gnupg.org; 30 license = stdenv.lib.licenses.lgpl2Plus; 31 platforms = stdenv.lib.platforms.all; 32 }; 33}