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

9 lines
255 B
Nix

{ mkDerivation, base, binary, http-api-data, path-pieces, stdenv }:
mkDerivation {
pname = "cryptoids-types";
version = "0.0.0";
src = ./.;
libraryHaskellDepends = [ base binary http-api-data path-pieces ];
license = stdenv.lib.licenses.bsd3;
}