30 lines
790 B
Nix
30 lines
790 B
Nix
{
|
|
description = "cherrykitten.dev";
|
|
|
|
inputs.nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
|
|
inputs.flake-utils.url = "github:numtide/flake-utils";
|
|
|
|
outputs = { self, nixpkgs, flake-utils }:
|
|
flake-utils.lib.eachDefaultSystem (system:
|
|
let
|
|
pkgs = nixpkgs.legacyPackages.${system};
|
|
in
|
|
{
|
|
packages.website = pkgs.stdenv.mkDerivation {
|
|
pname = "cherrykitten.dev";
|
|
version = "0";
|
|
src = ./.;
|
|
nativeBuildInputs = [ pkgs.zola ];
|
|
buildPhase = "zola build";
|
|
installPhase = "cp -r public $out";
|
|
};
|
|
defaultPackage = self.packages.${system}.website;
|
|
devShell = pkgs.mkShell {
|
|
packages = with pkgs; [
|
|
zola
|
|
];
|
|
};
|
|
}
|
|
);
|
|
}
|
|
|