aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Alexander Foremny <aforemny@posteo.de>2025-02-20 16:28:28 +0100
committerLibravatar Alexander Foremny <aforemny@posteo.de>2025-02-20 18:37:07 +0100
commitbb7cb646a7b0bd762cd23c1a24ab63bba1e2407d (patch)
tree7e05122d3e21611a4210549f8e7561aa6d5391ab
parentcf20ad648a6654d2184b0b6f528d698a4fbc0b63 (diff)
add acms
-rw-r--r--README.md10
-rw-r--r--default.nix2
-rw-r--r--nix/sources.json6
3 files changed, 11 insertions, 7 deletions
diff --git a/README.md b/README.md
index 168a8b5..87ee603 100644
--- a/README.md
+++ b/README.md
@@ -4,11 +4,7 @@
```console
cabal build
-firefox dist-newstyle/build/javascript-ghcjs/ghc-9.10.1/achat-0.1.0.0/x/achat/build/achat/achat.jsexe/index.html
-```
-
-## nix (package)
-
-```console
-firefox $(nix-build --no-out-link -A achat)/share/achat.jsexe/index.html
+acms serve content &
+python -m http.server -d dist-newstyle/build/javascript-ghcjs/ghc-9.10.1/achat-0.1.0.0/x/achat/build/achat/achat.jsexe &
+firefox http://localhost:8000
```
diff --git a/default.nix b/default.nix
index 9c7a8a1..a3ce768 100644
--- a/default.nix
+++ b/default.nix
@@ -8,6 +8,7 @@
let
ghc = "ghc910";
haskellPackages = pkgs.pkgsCross.ghcjs.haskell.packages.${ghc};
+ acms = (import sources.acms { }).acms;
in
rec {
inherit haskellPackages;
@@ -17,6 +18,7 @@ rec {
haskellPackages.achat
];
nativeBuildInputs = [
+ acms
pkgs.haskell.packages.${ghc}.cabal-install
pkgs.haskell.packages.${ghc}.ormolu
];
diff --git a/nix/sources.json b/nix/sources.json
index 57e75d7..aaa40f9 100644
--- a/nix/sources.json
+++ b/nix/sources.json
@@ -1,4 +1,10 @@
{
+ "acms": {
+ "branch": "main",
+ "repo": "git@code.nomath.org:~/acms",
+ "rev": "cec71796c025d49ad2248f27b6e1055f5a5eb7e2",
+ "type": "git"
+ },
"haskell-halogen": {
"branch": "master",
"description": "Port of purescript-halogen to Haskell",