cryptoids/cryptoids/cryptoids.nix
2017-10-10 03:40:23 +02:00

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;
}