14 lines
376 B
Nix
14 lines
376 B
Nix
{ mkDerivation, base, binary, bytestring, cryptoids-types
|
|
, cryptonite, memory, stdenv
|
|
}:
|
|
mkDerivation {
|
|
pname = "cryptoids";
|
|
version = "0.0.0";
|
|
src = ./.;
|
|
libraryHaskellDepends = [
|
|
base binary bytestring cryptoids-types cryptonite memory
|
|
];
|
|
description = "Reversable and secure encoding of object ids as a bytestring";
|
|
license = stdenv.lib.licenses.bsd3;
|
|
}
|