summaryrefslogtreecommitdiff
path: root/pkgs/scpzine-texlive.nix
diff options
context:
space:
mode:
authorNatasha Moongrave <natasha@256phi.eu>2026-06-12 13:37:13 +0200
committerNatasha Moongrave <natasha@256phi.eu>2026-06-12 13:37:13 +0200
commit15d50528cf86e93bad19f65f1e4b47af49e94d71 (patch)
treecaaa600a8f38df84dc269a3844d276393e90262c /pkgs/scpzine-texlive.nix
parent72ee2b5a1e65ce804d6e1dcfd11aec06385594cc (diff)
Nuked everything
Diffstat (limited to 'pkgs/scpzine-texlive.nix')
-rw-r--r--pkgs/scpzine-texlive.nix38
1 files changed, 0 insertions, 38 deletions
diff --git a/pkgs/scpzine-texlive.nix b/pkgs/scpzine-texlive.nix
deleted file mode 100644
index b9ce910..0000000
--- a/pkgs/scpzine-texlive.nix
+++ /dev/null
@@ -1,38 +0,0 @@
-# Local TeXLive package for scpzine.sty
-# Builds a texlivePackages-compatible derivation from the local .sty file.
-{
- lib,
- runCommand,
- texlive,
-}: let
- scpzine-src = ../assets/texmf/tex/latex/scpzine;
-in
- runCommand "texlive-scpzine" {
- passthru.tlDeps = with texlive; [
- courier
- lm
- microtype
- parskip
- setspace
- ragged2e
- graphics
- wrapfig
- xcolor
- pgf # tikz
- booktabs
- tabularx
- tools # array
- soul
- textcase
- eso-pic
- hyperref
- fancyhdr
- environ
- geometry
- fontenc
- ];
- tlType = "run";
- } ''
- mkdir -p "$out/tex/latex/scpzine"
- cp ${scpzine-src}/scpzine.sty "$out/tex/latex/scpzine/"
- ''