add flake.nix

This commit is contained in:
Jana Dönszelmann 2025-09-29 16:46:52 +02:00
parent dd6e4afb13
commit 11e7b05d35
No known key found for this signature in database
4 changed files with 104 additions and 0 deletions

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
result/

61
flake.lock generated Normal file
View file

@ -0,0 +1,61 @@
{
"nodes": {
"flake-utils": {
"inputs": {
"systems": "systems"
},
"locked": {
"lastModified": 1731533236,
"narHash": "sha256-l0KFg5HjrsfsO/JpG+r7fRrqm12kzFHyUHqHCVpMMbI=",
"owner": "numtide",
"repo": "flake-utils",
"rev": "11707dc2f618dd54ca8739b309ec4fc024de578b",
"type": "github"
},
"original": {
"owner": "numtide",
"repo": "flake-utils",
"type": "github"
}
},
"nixpkgs": {
"locked": {
"lastModified": 1759036355,
"narHash": "sha256-0m27AKv6ka+q270dw48KflE0LwQYrO7Fm4/2//KCVWg=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "e9f00bd893984bc8ce46c895c3bf7cac95331127",
"type": "github"
},
"original": {
"owner": "NixOS",
"ref": "nixos-unstable",
"repo": "nixpkgs",
"type": "github"
}
},
"root": {
"inputs": {
"flake-utils": "flake-utils",
"nixpkgs": "nixpkgs"
}
},
"systems": {
"locked": {
"lastModified": 1681028828,
"narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=",
"owner": "nix-systems",
"repo": "default",
"rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e",
"type": "github"
},
"original": {
"owner": "nix-systems",
"repo": "default",
"type": "github"
}
}
},
"root": "root",
"version": 7
}

41
flake.nix Normal file
View file

@ -0,0 +1,41 @@
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
};
outputs =
{ self
, nixpkgs
, flake-utils
,
}:
flake-utils.lib.eachDefaultSystem (
system:
let
pkgs = import nixpkgs { inherit system; };
nativeBuildInputs = with pkgs; [ ];
buildInputs = with pkgs; [ ];
in
with pkgs;
rec {
packages = rec {
website = pkgs.stdenv.mkDerivation {
name = "website";
version = "2025-09-29";
src = ./.;
inherit nativeBuildInputs buildInputs;
installPhase = ''
mkdir -p $out
cp -pr ./* $out/
'';
};
default = website;
};
devShells.default = mkShell {
buildInputs = buildInputs ++ [ ];
inherit nativeBuildInputs;
packages = with pkgs; [ ];
};
}
);
}

1
result Symbolic link
View file

@ -0,0 +1 @@
/nix/store/31kyjxw5snpsk2jqplxbmjjqqwi87rwd-website