nixpkgs/pkgs/development/libraries/libmhash/default.nix
Peter Simons 0460e3f2f7 Enable building of static libraries so that urweb can build statically
linked binaries.

svn path=/nixpkgs/trunk/; revision=24692
2010-11-15 17:47:36 +00:00

29 lines
803 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
meta = {
description = "Hash algorithms library";
longDescription = ''
Libmhash is a library that provides a uniform interface to several hash
algorithms. It supports the basics for message authentication by
following rfc2104 (HMAC). It also includes some key generation algorithms
which are based on hash algorithms.
'';
homepage = http://mhash.sourceforge.net;
license = "LGPL";
};
pname = "mhash";
version = "0.9.9.9";
name = "${pname}-${version}";
dontDisableStatic = true;
src = fetchurl {
url = "mirror://sourceforge/${pname}/${name}.tar.bz2";
sha256 = "1w7yiljan8gf1ibiypi6hm3r363imm3sxl1j8hapjdq3m591qljn";
};
patches = [ ./autotools-define-conflict-debian-fix.patch ];
}