-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updating dream-html and adding depencies for pure-html (#1920)
* chore(dream_html): updating dream_html * fix(dependencies): add dependencies for pure-html * fix(review): removing uri and stringext * fix fmt --------- Co-authored-by: Antonio Nuno Monteiro <anmonteiro@gmail.com>
- Loading branch information
1 parent
59f5265
commit 9e2797c
Showing
3 changed files
with
26 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{ lib, buildDunePackage, fetchFromGitHub, uri }: | ||
|
||
buildDunePackage { | ||
pname = "pure-html"; | ||
version = "3.10.0"; | ||
|
||
src = fetchFromGitHub { | ||
owner = "yawaramin"; | ||
repo = "dream-html"; | ||
rev = "v3.10.0"; | ||
sha256 = "sha256-OlO3g+cEP27GjxJZT0jCTRkICLFRLS0jWkitqXeAVX8="; | ||
}; | ||
|
||
propagatedBuildInputs = [ uri ]; | ||
|
||
meta = { | ||
description = | ||
"Write HTML directly in your OCaml source files with editor support."; | ||
license = lib.licenses.gpl3; | ||
}; | ||
} |