Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / libraries / libmhash / default.nix
blob0cccefb9998037f9a605bcfea10c47a4eed3f499
1 { lib, stdenv, fetchurl }:
3 stdenv.mkDerivation rec {
4   pname = "mhash";
5   version = "0.9.9.9";
7   src = fetchurl {
8     url = "mirror://sourceforge/${pname}/${pname}-${version}.tar.bz2";
9     sha256 = "1w7yiljan8gf1ibiypi6hm3r363imm3sxl1j8hapjdq3m591qljn";
10   };
12   dontDisableStatic = true;
14   patches = [ ./autotools-define-conflict-debian-fix.patch ];
16   meta = {
17     description = "Hash algorithms library";
18     longDescription = ''
19       Libmhash is a library that provides a uniform interface to several hash
20       algorithms. It supports the basics for message authentication by
21       following rfc2104 (HMAC). It also includes some key generation algorithms
22       which are based on hash algorithms.
23     '';
24     homepage = "https://mhash.sourceforge.net";
25     license = "LGPL";
26     platforms = lib.platforms.unix;
27   };