added reading of cards from data for template started migrating configs to all nix

This commit is contained in:
specCon18 2023-08-10 18:41:43 -04:00
parent 25f70e849b
commit 60f28672d3
15 changed files with 646 additions and 46 deletions

View file

@ -1,12 +1,45 @@
{
description = "A TCG card trading tool written in Rust";
inputs.nixpkgs.url = "nixpkgs/23.05";
outputs = { self, nixpkgs }: let
inputs={
nixpkgs.url = "nixpkgs/23.05";
nixago = {
url = "github:jmgilman/nixago";
inputs.nixpkgs.follows = "nixpkgs";
};
nixago-exts = {
url = "github:nix-community/nixago-extensions";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = { self, nixpkgs, nixago, nixago-exts }: let
system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system};
build-tailwind = pkgs.writeShellScriptBin "build-tailwind" ''
#!/usr/bin/env zsh
set -e
export PATH=${pkgs.nodejs_20}/bin:${pkgs.nodePackages_latest.pnpm}/bin:$PATH
pnpm dlx tailwindcss -i src/styles/tailwind.css -o assets/main.css --watch
'';
# gitignore = import "${self}/.config/nix/.gitignore.nix" { inherit pkgs; };
# npmrc = import "${self}/.config/nix/.npmrc.nix" { inherit nixago; };
# cargoConfig = import "${self}/.config/nix/cargo.nix" { inherit nixago; };
# env = import "${self}/.config/nix/env.nix" { inherit pkgs; };
# package = import "${self}/.config/nix/package.nix" { inherit nixago; };
# Combine all shell hooks
# combinedShellHook = ''
# ${gitignore}
# ${npmrc.shellHook}
# ${cargoConfig.shellHook}
# ${env}
# ${package.shellHook}
# '';
in {
defaultPackage.${system} = with pkgs; stdenv.mkDerivation {
name = "sk-tcg-trader";
@ -28,6 +61,8 @@
export OPENSSL_LIB_DIR=${openssl.out}/lib
export OPENSSL_INCLUDE_DIR=${openssl.dev}/include
'';
# ${combinedShellHook} # Include the combined shell hooks goes in shell hook
};
tailwind = build-tailwind;
};
}