pkgs/tools/typesetting: remove dead code
This commit is contained in:
parent
4076c4f668
commit
59fbf3ee74
4 changed files with 6 additions and 8 deletions
|
@ -1,5 +1,5 @@
|
|||
{ lib, stdenv, fetchurl, fixDarwinDylibNames, which, dieHook
|
||||
, enableShared ? !(stdenv.hostPlatform.isStatic)
|
||||
, enableShared ? !stdenv.hostPlatform.isStatic
|
||||
, enableStatic ? stdenv.hostPlatform.isStatic
|
||||
# for passthru.tests
|
||||
, nix
|
||||
|
@ -46,7 +46,6 @@ stdenv.mkDerivation rec {
|
|||
|
||||
postInstall =
|
||||
let
|
||||
inherit (stdenv.hostPlatform.extensions) sharedLibrary;
|
||||
soVersion = "3";
|
||||
in
|
||||
|
||||
|
|
|
@ -1,15 +1,15 @@
|
|||
{ lib, stdenv, fetchFromGitHub, ruby, ocamlPackages
|
||||
{ lib, fetchFromGitHub, ocamlPackages
|
||||
, ipaexfont, junicode, lmodern, lmmath
|
||||
}:
|
||||
let
|
||||
camlpdf = ocamlPackages.camlpdf.overrideAttrs (o: {
|
||||
camlpdf = ocamlPackages.camlpdf.overrideAttrs {
|
||||
src = fetchFromGitHub {
|
||||
owner = "gfngfn";
|
||||
repo = "camlpdf";
|
||||
rev = "v2.3.1+satysfi";
|
||||
sha256 = "1s8wcqdkl1alvfcj67lhn3qdz8ikvd1v64f4q6bi4c0qj9lmp30k";
|
||||
};
|
||||
});
|
||||
};
|
||||
otfm = ocamlPackages.otfm.overrideAttrs (o: {
|
||||
src = fetchFromGitHub {
|
||||
owner = "gfngfn";
|
||||
|
|
|
@ -3,7 +3,6 @@
|
|||
, lib
|
||||
, makeWrapper
|
||||
, autoreconfHook
|
||||
, buildEnv
|
||||
, python3
|
||||
, fontforge
|
||||
, potrace
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
, fetchFromGitHub
|
||||
}:
|
||||
|
||||
stdenvNoCC.mkDerivation (finalAttrs: {
|
||||
stdenvNoCC.mkDerivation {
|
||||
pname = "pgf-umlcd";
|
||||
version = "unstable-2020-05-28";
|
||||
|
||||
|
@ -30,4 +30,4 @@ stdenvNoCC.mkDerivation (finalAttrs: {
|
|||
maintainers = with maintainers; [ AndersonTorres ];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
})
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue