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

  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 = "notes.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
        '';

        apps = {
          deploy = pkgs.pkgs.writeShellScriptBin "run-deploy" ''
            set -euxo pipefail
            export PATH=${
              pkgs.lib.makeBinPath [ pkgs.hugo pkgs.git pkgs.jq pkgs.flyctl ]
            }:$PATH
            bash ./scripts/deploy.sh
          '';
        };

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