2023-12-30 18:27:23 +00:00
|
|
|
{
|
|
|
|
description = "A site in nix?";
|
|
|
|
|
|
|
|
outputs = {
|
|
|
|
self,
|
|
|
|
nixpkgs,
|
|
|
|
}: let
|
|
|
|
system = "x86_64-linux";
|
|
|
|
pkgs = import nixpkgs {
|
|
|
|
inherit system;
|
|
|
|
};
|
|
|
|
nixite = import ./nixite/. {inherit pkgs;};
|
2023-12-31 09:25:25 +00:00
|
|
|
in nixite // {
|
2023-12-31 00:48:19 +00:00
|
|
|
|
2023-12-31 00:24:48 +00:00
|
|
|
packages.${system} = {
|
2023-12-31 09:15:25 +00:00
|
|
|
default = nixite.mkSite (
|
|
|
|
nixite.site.applyStyle ./testing/src/style.css
|
|
|
|
(nixite.site.extractPaths {
|
2023-12-31 04:27:09 +00:00
|
|
|
"index.html" = with nixite.elems; (doc [
|
2023-12-31 03:08:41 +00:00
|
|
|
[
|
|
|
|
(title "Nixite")
|
|
|
|
]
|
|
|
|
(main [
|
|
|
|
(link "/blog" "blog")
|
2023-12-31 09:15:25 +00:00
|
|
|
(nixite.html.tag "img" {src = ./testing/src/favicon.png;} "")
|
2023-12-31 03:08:41 +00:00
|
|
|
(list [
|
|
|
|
"item 1"
|
|
|
|
"item 2"
|
|
|
|
"item 3"
|
|
|
|
])
|
2023-12-31 04:27:09 +00:00
|
|
|
])
|
|
|
|
]);
|
2023-12-31 03:08:41 +00:00
|
|
|
blog = {
|
2023-12-31 04:27:09 +00:00
|
|
|
"index.html" = with nixite.elems; (doc [
|
2023-12-30 18:27:23 +00:00
|
|
|
[
|
2023-12-31 03:08:41 +00:00
|
|
|
(title "A post")
|
2023-12-30 18:27:23 +00:00
|
|
|
]
|
2023-12-31 00:24:48 +00:00
|
|
|
(main [
|
2023-12-31 03:08:41 +00:00
|
|
|
(p ''
|
|
|
|
This is a post
|
|
|
|
'')
|
|
|
|
(link "/" "Home")
|
2023-12-31 04:27:09 +00:00
|
|
|
])
|
|
|
|
]);
|
2023-12-31 03:08:41 +00:00
|
|
|
};
|
2023-12-31 09:15:25 +00:00
|
|
|
}));
|
2023-12-30 18:27:23 +00:00
|
|
|
|
2023-12-31 00:48:19 +00:00
|
|
|
serve = self.serve self.packages.${system}.default;
|
2023-12-31 00:24:48 +00:00
|
|
|
|
|
|
|
test = let
|
|
|
|
test = import ./testing/import.nix;
|
|
|
|
in
|
|
|
|
pkgs.writeShellScriptBin "test" ''
|
|
|
|
${test ./testing/md.test.nix}
|
|
|
|
${test ./testing/html.test.nix}
|
|
|
|
${test ./testing/elems.test.nix}
|
|
|
|
${test ./testing/site.test.nix}
|
2023-12-31 03:08:05 +00:00
|
|
|
${test ./testing/style.test.nix}
|
2023-12-31 00:24:48 +00:00
|
|
|
'';
|
2023-12-30 18:27:23 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|