chore: remove commented parts from nix flake

This commit is contained in:
Johan Larsson 2025-03-12 15:06:05 +01:00
parent a6abea0b02
commit b65079d9d1
No known key found for this signature in database
GPG Key ID: 2A41C0FEDD6FF540
1 changed files with 0 additions and 29 deletions

View File

@ -51,32 +51,3 @@
}
);
}
# {
# 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 = nixpkgs.legacyPackages.${system};
# texlive = pkgs.texlive.combine {inherit (pkgs.texlive) scheme-basic l3build;};
# l3build-wrapped = pkgs.writeShellScriptBin "l3build-wrapped" ''
# # NOTE: the trailing slash in TEXMF is required
# TEXMF="${texlive}/" ${texlive}/bin/l3build "$@"
# '';
# in {
# devShells.default = pkgs.mkShell {
# buildInputs = [
# texlive
# l3build-wrapped
# ];
# };
# }
# );
# }