Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added typescript type generator from thin.dev #1970

Merged
merged 1 commit into from
Jun 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions NixSupport/haskell-packages/ihp-datasync-typescript.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{ mkDerivation, ihp, ihp-ide, neat-interpolation, lib, with-utf8_1_1_0_0, megaparsec }:
mkDerivation {
pname = "ihp-datasync-typescript";
version = "v1.3.0";
src = ./../../ihp-datasync-typescript;
libraryHaskellDepends = [
ihp ihp-ide neat-interpolation
];
testHaskellDepends = [
ihp ihp-ide neat-interpolation megaparsec
];
executableHaskellDepends = [ ihp with-utf8_1_1_0_0 ];
description = "TypeScript code generation for IHP DataSync";
license = lib.licenses.mit;
}
1 change: 1 addition & 0 deletions devenv-module.nix
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,7 @@ that is defined in flake-module.nix
ide = ghcCompiler.ihp-ide;
ssc = ghcCompiler.ihp-ssc;
migrate = ghcCompiler.ihp-migrate;
datasync-typescript = ghcCompiler.ihp-datasync-typescript;
};
};
}
Loading