commit 477b3c9a79b063ad03d3f31acc0803fa73925aaf Author: Yadunand Prem Date: Tue Aug 5 00:32:58 2025 +0800 Add flake and zine diff --git a/flake.lock b/flake.lock new file mode 100644 index 0000000..c4915a6 --- /dev/null +++ b/flake.lock @@ -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": 1754278406, + "narHash": "sha256-jvIQTMN5EzoOP5RaGztpVese8a3wqy0M/h6tNzycW28=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "6a489c9482ca676ce23c0bcd7f2e1795383325fa", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-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 +} diff --git a/flake.nix b/flake.nix new file mode 100644 index 0000000..d4153cc --- /dev/null +++ b/flake.nix @@ -0,0 +1,51 @@ +{ + description = "yadunut.dev website"; + inputs = { + nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable"; + flake-utils = { + url = "github:numtide/flake-utils"; + }; + }; + + outputs = + { + nixpkgs, + flake-utils, + ... + }: + flake-utils.lib.eachDefaultSystem ( + system: + let + pkgs = import nixpkgs { + inherit system; + }; + zineBinary = + if system == "aarch64-darwin" then + pkgs.stdenvNoCC.mkDerivation { + pname = "zine"; + version = "0.11.1"; + src = pkgs.fetchzip { + url = "https://github.com/kristoff-it/zine/releases/download/v0.11.1/aarch64-macos.zip"; + sha256 = "WKY9B4ObE4D7fkvMsF3cLvGHyxOT2FI8YNwLmOAujrQ="; + stripRoot = false; + }; + installPhase = '' + mkdir -p $out/bin + cp $src/zine $out/bin/ + chmod +x $out/bin/zine + ''; + } + else + { }; + in + { + devShells = { + default = pkgs.mkShell { + buildInputs = [ + zineBinary + ]; + }; + }; + } + ); +}