Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 82d9d2a

Browse files
committedJun 12, 2020
make nix-build work
use elm2nix to fetch elm dependencies fixes #43
1 parent 6992416 commit 82d9d2a

File tree

6 files changed

+107
-12
lines changed

6 files changed

+107
-12
lines changed
 

‎.github/workflows/main.yml

+2-4
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,14 @@ jobs:
1515
- name: Installing Nix
1616
uses: cachix/install-nix-action@v8
1717
- name: Building search.nixos.org
18-
run: |
19-
nix-shell --run "yarn prod"
20-
cp netlify.toml ./dist/
18+
run: nix-build
2119
- name: Deploy to Netlify
2220
uses: nwtgck/actions-netlify@v1.0.5
2321
env:
2422
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
2523
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
2624
with:
27-
publish-dir: './dist'
25+
publish-dir: './result/'
2826
production-branch: 'master'
2927
github-token: ${{ secrets.GITHUB_TOKEN }}
3028
deploy-message: 'Deploy from GitHub Actions'

‎.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,6 @@ example/dist
2828

2929
ignore
3030
dist
31-
tests/VerifyExamples
3231
package-lock.json
32+
result
33+
scripts/eval-*

‎default.nix

+6-7
Original file line numberDiff line numberDiff line change
@@ -62,15 +62,13 @@ in pkgs.stdenv.mkDerivation {
6262
elm-analyse
6363
]);
6464

65-
# TODO: elm-webpack-loader is trying to download the packages instead of using
66-
# configurePhase = pkgs.elmPackages.fetchElmDeps {
67-
# elmPackages = import ./elm-srcs.nix;
68-
# elmVersion = pkgs.elmPackages.elm.version;
69-
# registryDat = ./registry.dat;
70-
# };
65+
configurePhase = pkgs.elmPackages.fetchElmDeps {
66+
elmPackages = import ./elm-srcs.nix;
67+
elmVersion = pkgs.elmPackages.elm.version;
68+
registryDat = ./registry.dat;
69+
};
7170

7271
patchPhase = ''
73-
rm -rf elm-stuff
7472
rm -rf node_modules
7573
ln -sf ${yarnPkg}/libexec/${package.name}/node_modules .
7674
'';
@@ -84,6 +82,7 @@ in pkgs.stdenv.mkDerivation {
8482
installPhase = ''
8583
mkdir -p $out
8684
cp -R ./dist/* $out/
85+
cp netlify.toml $out/
8786
'';
8887
shellHook = ''
8988
rm -rf node_modules

‎elm-srcs.nix

+97
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,97 @@
1+
{
2+
3+
"krisajenkins/remotedata" = {
4+
sha256 = "0m5bk0qhsjv14vajqrkph386696pnhj5rn51kgma8lwyvvx9ihw1";
5+
version = "6.0.1";
6+
};
7+
8+
"elm/json" = {
9+
sha256 = "0kjwrz195z84kwywaxhhlnpl3p251qlbm5iz6byd6jky2crmyqyh";
10+
version = "1.1.3";
11+
};
12+
13+
"truqu/elm-base64" = {
14+
sha256 = "12w68b4idbs2vn0gm0lj354pm745jb7n0fj69408mpvh5r1z4m1b";
15+
version = "2.0.4";
16+
};
17+
18+
"elm/html" = {
19+
sha256 = "1n3gpzmpqqdsldys4ipgyl1zacn0kbpc3g4v3hdpiyfjlgh8bf3k";
20+
version = "1.0.0";
21+
};
22+
23+
"elm/browser" = {
24+
sha256 = "0nagb9ajacxbbg985r4k9h0jadqpp0gp84nm94kcgbr5sf8i9x13";
25+
version = "1.0.2";
26+
};
27+
28+
"elm/core" = {
29+
sha256 = "0gyk7lx3b6vx2jlfbxdsb4xffn0wdvg5yxldq50jr2kk5dzc2prj";
30+
version = "1.0.4";
31+
};
32+
33+
"elm/url" = {
34+
sha256 = "0av8x5syid40sgpl5vd7pry2rq0q4pga28b4yykn9gd9v12rs3l4";
35+
version = "1.0.0";
36+
};
37+
38+
"elm/http" = {
39+
sha256 = "008bs76mnp48b4dw8qwjj4fyvzbxvlrl4xpa2qh1gg2kfwyw56v1";
40+
version = "2.0.0";
41+
};
42+
43+
"NoRedInk/elm-json-decode-pipeline" = {
44+
sha256 = "0y25xn0yx1q2xlg1yx1i0hg4xq1yxx6yfa99g272z8162si75hnl";
45+
version = "1.0.0";
46+
};
47+
48+
"hecrj/html-parser" = {
49+
sha256 = "1fbr3f8j8jjmjknyaq55jlnfazrljqf1128xrc5gzsw3x56fwrbf";
50+
version = "2.3.4";
51+
};
52+
53+
"elm/bytes" = {
54+
sha256 = "02ywbf52akvxclpxwj9n04jydajcbsbcbsnjs53yjc5lwck3abwj";
55+
version = "1.0.8";
56+
};
57+
58+
"elm/file" = {
59+
sha256 = "1rljcb41dl97myidyjih2yliyzddkr2m7n74x7gg46rcw4jl0ny8";
60+
version = "1.0.5";
61+
};
62+
63+
"elm/regex" = {
64+
sha256 = "0lijsp50w7n1n57mjg6clpn9phly8vvs07h0qh2rqcs0f1jqvsa2";
65+
version = "1.0.0";
66+
};
67+
68+
"rtfeldman/elm-hex" = {
69+
sha256 = "1y0aa16asvwdqmgbskh5iba6psp43lkcjjw9mgzj3gsrg33lp00d";
70+
version = "1.0.0";
71+
};
72+
73+
"elm/parser" = {
74+
sha256 = "0a3cxrvbm7mwg9ykynhp7vjid58zsw03r63qxipxp3z09qks7512";
75+
version = "1.1.0";
76+
};
77+
78+
"elm/time" = {
79+
sha256 = "0vch7i86vn0x8b850w1p69vplll1bnbkp8s383z7pinyg94cm2z1";
80+
version = "1.0.0";
81+
};
82+
83+
"elm/virtual-dom" = {
84+
sha256 = "0q1v5gi4g336bzz1lgwpn5b1639lrn63d8y6k6pimcyismp2i1yg";
85+
version = "1.0.2";
86+
};
87+
88+
"elm-explorations/test" = {
89+
sha256 = "1fsd7bajm7qa93r5pn3mdafqh3blpzya601jbs9l238p0hmvh576";
90+
version = "1.2.2";
91+
};
92+
93+
"elm/random" = {
94+
sha256 = "138n2455wdjwa657w6sjq18wx2r0k60ibpc4frhbqr50sncxrfdl";
95+
version = "1.0.0";
96+
};
97+
}

‎registry.dat

94.1 KB
Binary file not shown.

‎versions.dat

Whitespace-only changes.

0 commit comments

Comments
 (0)
Please sign in to comment.