initial commit

This commit is contained in:
outfoxxed 2025-02-10 20:03:25 -08:00
commit a60daddd0c
Signed by: outfoxxed
GPG key ID: 4C88A185FB89301E
11 changed files with 333 additions and 0 deletions

7
shell.nix Normal file
View file

@ -0,0 +1,7 @@
{
pkgs ? import <nixpkgs> {},
blog-proxy ? pkgs.callPackage ./default.nix {},
}: pkgs.haskellPackages.shellFor {
packages = _: [ blog-proxy ];
buildInputs = [ pkgs.haskellPackages.cabal-install ];
}