mat.services/flake.nix

52 lines
1.9 KiB
Nix
Raw Normal View History

2022-08-08 04:31:56 +00:00
{
description = "personal site";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
flake-parts.url = "github:hercules-ci/flake-parts";
flake-parts.inputs.nixpkgs.follows = "nixpkgs";
2022-09-06 04:36:55 +00:00
gitignore.url = "github:hercules-ci/gitignore.nix";
gitignore.inputs.nixpkgs.follows = "nixpkgs";
2022-08-08 04:31:56 +00:00
};
2022-09-06 04:36:55 +00:00
outputs = { self, flake-parts, gitignore, ... }@inputs:
2022-08-08 04:31:56 +00:00
flake-parts.lib.mkFlake { inherit self; } {
imports = [ ];
systems = inputs.nixpkgs.lib.systems.flakeExposed;
2022-08-21 21:46:49 +00:00
perSystem = { config, self', inputs', pkgs, system, ... }:
let
2022-09-06 04:36:55 +00:00
inherit (gitignore.lib) gitignoreSource;
2022-10-11 17:09:21 +00:00
inherit (pkgs.callPackage ./nix { }) fonts optimize-images;
2022-08-27 19:08:42 +00:00
inherit (fonts) copyFonts linkFonts;
2022-10-20 23:48:14 +00:00
buildSite = { prod }:
let inherit (pkgs.lib) optionalString; in ''
optimize-images
${optionalString (!prod) "BASE_URL=https://$DRONE_COMMIT_SHA--mat-services.netlify.app"}
zola build --drafts ${optionalString (!prod) "--base-url $BASE_URL"}
# zola's ignored_content setting doesn't work in static/
rm -rf public/image/_favicon.svg
'';
2022-08-21 21:46:49 +00:00
in
{
packages.default = with pkgs; stdenv.mkDerivation {
pname = "personal-site";
2022-10-11 17:09:21 +00:00
version = "2022-10-10";
2022-09-06 04:36:55 +00:00
src = gitignoreSource ./.;
2022-10-20 23:48:14 +00:00
nativeBuildInputs = [ git optimize-images zola ];
2022-10-11 17:09:21 +00:00
configurePhase = copyFonts;
2022-10-20 23:48:14 +00:00
buildPhase = buildSite { prod = true; };
installPhase = ''
cp -r public $out
'';
};
2022-10-20 23:32:33 +00:00
packages.staging-site = config.packages.default.overrideAttrs (_: {
2022-10-20 23:48:14 +00:00
buildPhase = buildSite { prod = false; };
2022-10-20 23:32:33 +00:00
});
2022-08-21 21:46:49 +00:00
devShells.default = with pkgs; mkShell {
2022-10-11 17:09:21 +00:00
packages = [ optimize-images zola ];
shellHook = linkFonts;
2022-08-27 19:08:42 +00:00
};
2022-08-08 04:31:56 +00:00
};
};
}