about summary refs log tree commit diff
path: root/users/fcuny/blog/flake.nix
blob: 7d5a4b22c6a16d6329d0f4cc2b0222a2d033db34 (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
{
  description = "Franck Cuny's personal website.";

  inputs = {
    nixpkgs.url = "github:nixos/nixpkgs";
    flake-utils.url = "github:numtide/flake-utils";
  };

  outputs = { self, nixpkgs, flake-utils }:
    flake-utils.lib.eachDefaultSystem (system:
      let pkgs = nixpkgs.legacyPackages.${system};
      in {
        defaultPackage = with pkgs;
          stdenv.mkDerivation {
            pname = "fcuny.net";
            version = self.lastModifiedDate;
            src = ./.;
            buildInputs = [ hugo git ];
            buildPhase = ''
              mkdir -p $out
              hugo --minify --destination $out
            '';
            dontInstall = true;
          };
        defaultApp = pkgs.writers.writeBashBin "run-hugo" ''
          set -e
          set -o pipefail
          export PATH=${pkgs.lib.makeBinPath [ pkgs.hugo pkgs.git ]}
          hugo server -D
        '';

        deploy = pkgs.writers.writeBashBin "run-deploy" ''
          set -e
          set -o pipefile
          export PATH=${
            pkgs.lib.makeBinPath [ pkgs.hugo pkgs.git pkgs.jq pkgs.flyctl ]
          }
          ./scripts/deploy.sh
        '';

        devShell =
          pkgs.mkShell { buildInputs = with pkgs; [ hugo flyctl git jq ]; };
      });
}