dwarf-therapist: remove texlive build-input

+3 -6
+2 -4
pkgs/games/dwarf-fortress/default.nix
··· 1 - { stdenv, stdenvNoCC, gccStdenv, lib, recurseIntoAttrs, libsForQt5, newScope, texliveBasic, perlPackages, jdk8, jre8 }: 1 + { stdenv, stdenvNoCC, gccStdenv, lib, recurseIntoAttrs, libsForQt5, newScope, perlPackages, jdk8, jre8 }: 2 2 3 3 # To whomever it may concern: 4 4 # ··· 79 79 80 80 dwarf-therapist = libsForQt5.callPackage ./dwarf-therapist/wrapper.nix { 81 81 inherit dwarf-fortress; 82 - dwarf-therapist = (libsForQt5.callPackage ./dwarf-therapist { 83 - texlive = texliveBasic.withPackages (ps: with ps; [ float caption wrapfig adjmulticol sidecap preprint enumitem ]); 84 - }).override (optionalAttrs (!isAtLeast50) { 82 + dwarf-therapist = (libsForQt5.callPackage ./dwarf-therapist {}).override (optionalAttrs (!isAtLeast50) { 85 83 # 41.2.5 is the last version to support Dwarf Fortress 0.47. 86 84 version = "41.2.5"; 87 85 hash = "sha256-xfYBtnO1n6OcliVt07GsQ9alDJIfWdVhtuyWwuvXSZs=";
+1 -2
pkgs/games/dwarf-fortress/dwarf-therapist/default.nix
··· 4 4 , qtbase 5 5 , qtdeclarative 6 6 , cmake 7 - , texlive 8 7 , ninja 9 8 , version ? "42.1.6" 10 9 , hash ? "sha256-VjCXT4sl3HsFILrqTc3JJSeRedZaOXUbf4KvSzTo0uc=" ··· 22 21 inherit hash; 23 22 }; 24 23 25 - nativeBuildInputs = [ texlive cmake ninja ]; 24 + nativeBuildInputs = [ cmake ninja ]; 26 25 buildInputs = [ qtbase qtdeclarative ]; 27 26 28 27 enableParallelBuilding = true;