lol

pkgs/tools/typesetting: remove dead code

figsoda 59fbf3ee 4076c4f6

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