lol

pkgs/tools/typesetting: remove dead code

figsoda 59fbf3ee 4076c4f6

+6 -8
+1 -2
pkgs/tools/typesetting/lowdown/default.nix
··· 1 1 { lib, stdenv, fetchurl, fixDarwinDylibNames, which, dieHook 2 - , enableShared ? !(stdenv.hostPlatform.isStatic) 2 + , enableShared ? !stdenv.hostPlatform.isStatic 3 3 , enableStatic ? stdenv.hostPlatform.isStatic 4 4 # for passthru.tests 5 5 , nix ··· 46 46 47 47 postInstall = 48 48 let 49 - inherit (stdenv.hostPlatform.extensions) sharedLibrary; 50 49 soVersion = "3"; 51 50 in 52 51
+3 -3
pkgs/tools/typesetting/satysfi/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, ruby, ocamlPackages 1 + { lib, fetchFromGitHub, ocamlPackages 2 2 , ipaexfont, junicode, lmodern, lmmath 3 3 }: 4 4 let 5 - camlpdf = ocamlPackages.camlpdf.overrideAttrs (o: { 5 + camlpdf = ocamlPackages.camlpdf.overrideAttrs { 6 6 src = fetchFromGitHub { 7 7 owner = "gfngfn"; 8 8 repo = "camlpdf"; 9 9 rev = "v2.3.1+satysfi"; 10 10 sha256 = "1s8wcqdkl1alvfcj67lhn3qdz8ikvd1v64f4q6bi4c0qj9lmp30k"; 11 11 }; 12 - }); 12 + }; 13 13 otfm = ocamlPackages.otfm.overrideAttrs (o: { 14 14 src = fetchFromGitHub { 15 15 owner = "gfngfn";
-1
pkgs/tools/typesetting/tex/mftrace/default.nix
··· 3 3 , lib 4 4 , makeWrapper 5 5 , autoreconfHook 6 - , buildEnv 7 6 , python3 8 7 , fontforge 9 8 , potrace
+2 -2
pkgs/tools/typesetting/tex/pgf-tikz/pgf-umlsd.nix
··· 3 3 , fetchFromGitHub 4 4 }: 5 5 6 - stdenvNoCC.mkDerivation (finalAttrs: { 6 + stdenvNoCC.mkDerivation { 7 7 pname = "pgf-umlcd"; 8 8 version = "unstable-2020-05-28"; 9 9 ··· 30 30 maintainers = with maintainers; [ AndersonTorres ]; 31 31 platforms = platforms.unix; 32 32 }; 33 - }) 33 + }