linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / libraries / libmhash / default.nix
blobf569ce7fac7538cf8ca432ad72a32d6fc106d5c4
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 = "http://mhash.sourceforge.net";
25     license = "LGPL";
26     platforms = lib.platforms.unix;
27   };