about summary refs log tree commit diff
path: root/pkgs/tools/text/highlight
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/text/highlight')
-rw-r--r--pkgs/tools/text/highlight/default.nix63
1 files changed, 0 insertions, 63 deletions
diff --git a/pkgs/tools/text/highlight/default.nix b/pkgs/tools/text/highlight/default.nix
deleted file mode 100644
index 312c84921499..000000000000
--- a/pkgs/tools/text/highlight/default.nix
+++ /dev/null
@@ -1,63 +0,0 @@
-{ lib, stdenv, fetchFromGitLab, getopt, lua, boost, libxcrypt, pkg-config, swig, perl, gcc }:
-
-let
-  self = stdenv.mkDerivation rec {
-    pname = "highlight";
-    version = "4.12";
-
-    src = fetchFromGitLab {
-      owner = "saalen";
-      repo = "highlight";
-      rev = "v${version}";
-      sha256 = "sha256-TFMU9owxBGrrbatk7Jj9xP8OEJNjXnjbwnW6Xq34awI=";
-    };
-
-    enableParallelBuilding = true;
-
-    nativeBuildInputs = [ pkg-config swig perl ]
-      ++ lib.optional stdenv.isDarwin gcc;
-
-    buildInputs = [ getopt lua boost libxcrypt ];
-
-    postPatch = ''
-      substituteInPlace src/makefile \
-        --replace "shell pkg-config" "shell $PKG_CONFIG"
-      substituteInPlace makefile \
-        --replace 'gzip' 'gzip -n'
-    '' + lib.optionalString stdenv.cc.isClang ''
-      substituteInPlace src/makefile \
-          --replace 'CXX=g++' 'CXX=clang++'
-    '';
-
-    preConfigure = ''
-      makeFlags="PREFIX=$out conf_dir=$out/etc/highlight/ CXX=$CXX AR=$AR"
-    '';
-
-    # This has to happen _before_ the main build because it does a
-    # `make clean' for some reason.
-    preBuild = lib.optionalString (!stdenv.isDarwin) ''
-      make -C extras/swig $makeFlags perl
-    '';
-
-    postCheck = lib.optionalString (!stdenv.isDarwin) ''
-      perl -Iextras/swig extras/swig/testmod.pl
-    '';
-
-    preInstall = lib.optionalString (!stdenv.isDarwin) ''
-      mkdir -p $out/${perl.libPrefix}
-      install -m644 extras/swig/highlight.{so,pm} $out/${perl.libPrefix}
-      make -C extras/swig clean # Clean up intermediate files.
-    '';
-
-    meta = with lib; {
-      description = "Source code highlighting tool";
-      mainProgram = "highlight";
-      homepage = "http://www.andre-simon.de/doku/highlight/en/highlight.php";
-      platforms = platforms.unix;
-      maintainers = with maintainers; [ willibutz ];
-    };
-  };
-
-in
-  if stdenv.isDarwin then self
-  else perl.pkgs.toPerlModule self