nixos/spec/web/site/default.nix

42 lines
848 B
Nix
Raw Normal View History

2024-01-15 15:39:28 +08:00
{ lib
, stdenvNoCC
, ruby
2024-02-24 17:19:50 +08:00
, bundlerEnv
2024-01-15 15:39:28 +08:00
, writeShellScriptBin
, fetchFromGitHub }: let
name = "website";
version = "20240114";
assets = fetchFromGitHub {
name = "${name}-assets";
owner = "cotes2020";
repo = "chirpy-static-assets";
rev = "c577249";
hash = "sha256-Uxe7PMNwzKUN2b77QbjWLxEtOOLodPOyeMuUM1eKdlc=";
};
2024-02-24 17:19:50 +08:00
gems = bundlerEnv {
name = "${name}-gems";
inherit ruby;
gemfile = ./Gemfile;
lockfile = ./Gemfile.lock;
gemset = ./gemset.nix;
2024-01-15 15:39:28 +08:00
};
in stdenvNoCC.mkDerivation {
pname = name;
inherit version;
src = ./.;
2024-02-24 17:19:50 +08:00
buildInputs = [ gems ruby ];
nativeBuildInputs = [ (writeShellScriptBin "git" "true") ];
2024-01-15 15:39:28 +08:00
configurePhase = ''
cp -r ${assets}/. assets/lib/
'';
buildPhase = "JEKYLL_ENV=production bundle exec jekyll build";
installPhase = ''
cp -r _site "$out"
'';
}