mini-calc: 3.3.3 -> 3.3.5 (#372274)
[NixPkgs.git] / pkgs / by-name / li / libgringotts / package.nix
blobfb941e531bebd3843ef60ec2bacf15e5fa4a7c3d
2   lib,
3   stdenv,
4   fetchurl,
5   pkg-config,
6   zlib,
7   bzip2,
8   libmcrypt,
9   libmhash,
12 stdenv.mkDerivation rec {
13   pname = "libgringotts";
14   version = "1.2.1";
16   src = fetchurl {
17     url = "https://sourceforge.net/projects/gringotts.berlios/files/${pname}-${version}.tar.bz2";
18     sha256 = "1ldz1lyl1aml5ci1mpnys8dg6n7khpcs4zpycak3spcpgdsnypm7";
19   };
21   nativeBuildInputs = [ pkg-config ];
22   buildInputs = [
23     zlib
24     bzip2
25     libmcrypt
26     libmhash
27   ];
29   meta = with lib; {
30     description = "Small library to encapsulate data in an encrypted structure";
31     homepage = "https://libgringotts.sourceforge.net/";
32     license = licenses.gpl2Plus;
33     platforms = platforms.linux;
34     maintainers = with maintainers; [ pSub ];
35   };