mirror of
https://github.com/typeable/octopod.git
synced 2024-11-22 16:56:29 +03:00
iko
cbcd09f114
* Migrate to haskell.nix for everything * Fixed build (?) * Fixed build * build frontend with ghcjs * Updated Makefile * Uglified js * Made frontend actually work (: * Increase swap * Added checkout back in (: * Updated VS Code settings * formatted cabal.project * cleaned up nix
24 lines
694 B
Nix
24 lines
694 B
Nix
{ sources ? import ./nix/sources.nix
|
|
, haskellNix ? import sources.haskellNix { }
|
|
, pkgs ? import haskellNix.sources.nixpkgs-2105 haskellNix.nixpkgsArgs
|
|
}:
|
|
let
|
|
hsPkgs = pkgs.haskell-nix.cabalProject {
|
|
src = pkgs.haskell-nix.haskellLib.cleanGit {
|
|
name = "octopod";
|
|
src = ./.;
|
|
};
|
|
index-state = "2021-07-02T00:00:00Z";
|
|
compiler-nix-name = "ghc8105";
|
|
};
|
|
in
|
|
hsPkgs // {
|
|
octopod-frontend-pretty =
|
|
pkgs.runCommand "octopod-frontend-pretty"
|
|
{ } ''
|
|
mkdir $out
|
|
cp ${./octopod-frontend/index.html} $out/index.html
|
|
cp ${hsPkgs.projectCross.ghcjs.hsPkgs.octopod-frontend.components.exes.frontend}/bin/frontend.jsexe/all.js $out/all.js
|
|
'';
|
|
}
|