mirror of
https://codeberg.org/bunbun/bunbun.dev
synced 2025-06-07 21:09:50 -07:00
Compare commits
3 Commits
a74c54d63c
...
main
Author | SHA1 | Date | |
---|---|---|---|
e5d6bc0298 | |||
607c6d605d | |||
55733a27e9 |
5
404.html
5
404.html
@ -1,8 +1,8 @@
|
||||
<!doctype html>
|
||||
<html>
|
||||
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<title>404 Not Found</title>
|
||||
<style>
|
||||
:root {
|
||||
--foreground: #ffffff;
|
||||
@ -50,5 +50,4 @@
|
||||
<h1>404</h1>
|
||||
<h3>Page Not Found</h3>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
|
26
flake.nix
26
flake.nix
@ -1,30 +1,32 @@
|
||||
{
|
||||
inputs = {
|
||||
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
||||
flake-utils.url = "github:numtide/flake-utils";
|
||||
};
|
||||
|
||||
outputs = { self, nixpkgs, ... } @ inputs:
|
||||
let
|
||||
pkgs = nixpkgs.legacyPackages.x86_64-linux;
|
||||
in
|
||||
{
|
||||
devShells.x86_64-linux.default = pkgs.mkShell {
|
||||
outputs = { self, nixpkgs, flake-utils }:
|
||||
flake-utils.lib.eachDefaultSystem (system:
|
||||
let pkgs = nixpkgs.legacyPackages.${system};
|
||||
in with pkgs; {
|
||||
devShells.default = mkShell {
|
||||
buildInputs = [
|
||||
(pkgs.lua5_1.withPackages (ps: with ps; [
|
||||
({ fetchFromGitHub, fetchurl }:
|
||||
ps.buildLuarocksPackage {
|
||||
(lua5_3.withPackages (ps:
|
||||
with ps; [
|
||||
(buildLuarocksPackage {
|
||||
pname = "cmark";
|
||||
version = "0.30.2-1";
|
||||
knownRockspec = (fetchurl {
|
||||
url = "mirror://luarocks/cmark-0.30.2-1.rockspec";
|
||||
sha256 = "077kvl9xa9yj0fxyyxxw43k9v9dgd5f11ax8hhxj3nx8vfs5rps8";
|
||||
sha256 =
|
||||
"077kvl9xa9yj0fxyyxxw43k9v9dgd5f11ax8hhxj3nx8vfs5rps8";
|
||||
}).outPath;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "jgm";
|
||||
repo = "cmark-lua";
|
||||
rev = "0.30.2";
|
||||
hash = "sha256-6Bzq0FdyqXXiL6pLDRFbULFJpowF0P6CvAw8iqFXkkQ=";
|
||||
hash =
|
||||
"sha256-6Bzq0FdyqXXiL6pLDRFbULFJpowF0P6CvAw8iqFXkkQ=";
|
||||
};
|
||||
})
|
||||
luafilesystem
|
||||
@ -34,5 +36,5 @@
|
||||
]))
|
||||
];
|
||||
};
|
||||
};
|
||||
});
|
||||
}
|
||||
|
@ -1,9 +1,10 @@
|
||||
<!doctype html>
|
||||
<html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<link rel="stylesheet" type="text/css" href="style.css" />
|
||||
<title>bunbun.dev</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
Reference in New Issue
Block a user