blob: 801c50d3250d7ed1c414f6113f95d938841c20aa (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
let
niv-sources = import ./nix/sources.nix;
pkgs = import niv-sources.nixpkgs { };
src = pkgs.nix-gitignore.gitignoreSource [ "!.git" ] ./.;
utils-i18n = pkgs.callPackage ./nix/utils-i18n.nix { };
pkgs-next = pkgs.callPackage ./nix/nixpkgs-next.nix { };
jekyllEnv = pkgs.bundlerEnv {
name = "jekyll-env";
gemfile = ./Gemfile;
lockfile = ./Gemfile.lock;
gemset = ./nix/gemset.nix;
};
mktorrent-newer = pkgs.mktorrent.overrideAttrs(oldAttrs: {
src = pkgs.fetchFromGitHub {
owner = "Rudde";
repo = "mktorrent";
rev = "ea1fbf29d19f34a93f7d984c1ac29d6d08f1f508";
sha256 = "1cjq96qridpvqhphj3ljnhysnqkdck415wxaqy768r0rvzqq1ja4";
};
});
projectBuildInputs = with pkgs; [
jekyllEnv
pkgs-next.mdpo
mktorrent-newer
perl
graphviz
nixfmt
git
shellcheck
jq
niv
(hunspellWithDicts (with utils-i18n.dicts; [ en pt fr eo ]))
];
in rec {
site = pkgs.stdenv.mkDerivation {
inherit src;
name = "website-site";
phases = [ "unpackPhase" "buildPhase" ];
buildInputs = [ jekyllEnv ];
buildPhase = ''
patchShebangs .
jekyll build -d $out
'';
};
test = pkgs.stdenv.mkDerivation {
inherit src;
name = "website-test";
phases = projectBuildInputs;
buildInputs = projectBuildInputs;
buildPhase = ''
patchShebangs .
./tests.sh
touch $out
'';
};
shell = pkgs.mkShell {
name = "website-shell";
buildInputs = projectBuildInputs;
shellHook = ''
echo 'Starting a live server with:'
echo ' jekyll serve --future --livereload --trace'
'';
};
publishScript = pkgs.writeShellScriptBin "publish.sh" ''
set -eux
SERVER_URL='root@euandre.org'
REMOTE_PATH='/home/user-data/www/default/'
OUT_DOCS='${site}'
${pkgs.rsync}/bin/rsync -avzP \
--rsh="ssh -o StrictHostKeyChecking=no" \
"$OUT_DOCS/" \
"$SERVER_URL:$REMOTE_PATH" \
--delete
'';
}
|