2021-01-19 06:50:56 +00:00
|
|
|
{ stdenv, fetchurl, pkg-config, zlib, bzip2, libmcrypt, libmhash }:
|
2015-06-16 19:10:57 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "libgringotts";
|
2018-03-29 23:01:16 +01:00
|
|
|
version = "1.2.1";
|
2015-06-16 19:10:57 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "https://sourceforge.net/projects/gringotts.berlios/files/${pname}-${version}.tar.bz2";
|
2018-03-29 23:01:16 +01:00
|
|
|
sha256 = "1ldz1lyl1aml5ci1mpnys8dg6n7khpcs4zpycak3spcpgdsnypm7";
|
2015-06-16 19:10:57 +01:00
|
|
|
};
|
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2017-09-05 22:26:13 +01:00
|
|
|
buildInputs = [ zlib bzip2 libmcrypt libmhash ];
|
2015-06-16 19:10:57 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A small library to encapsulate data in an encrypted structure";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://libgringotts.sourceforge.net/";
|
2015-06-16 19:10:57 +01:00
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ pSub ];
|
|
|
|
};
|
|
|
|
}
|