9 lines
255 B
Nix
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;
|
|
}
|