mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
59 lines
1.6 KiB
Nix
59 lines
1.6 KiB
Nix
{ lib, stdenv, fetchFromGitLab, getopt, lua, boost, pkgconfig, swig, perl, gcc }:
|
|
|
|
with stdenv.lib;
|
|
|
|
let
|
|
self = stdenv.mkDerivation rec {
|
|
pname = "highlight";
|
|
version = "3.59";
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "saalen";
|
|
repo = "highlight";
|
|
rev = "v${version}";
|
|
sha256 = "0sqdzivnak3gcinvkf6rkgp1p5gjx5my6cb2790nh0v53y67v2pb";
|
|
};
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
nativeBuildInputs = [ pkgconfig swig perl ] ++ optional stdenv.isDarwin gcc;
|
|
|
|
buildInputs = [ getopt lua boost ];
|
|
|
|
prePatch = stdenv.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 = optionalString (!stdenv.isDarwin) ''
|
|
make -C extras/swig $makeFlags perl
|
|
'';
|
|
|
|
postCheck = optionalString (!stdenv.isDarwin) ''
|
|
perl -Iextras/swig extras/swig/testmod.pl
|
|
'';
|
|
|
|
preInstall = 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";
|
|
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
|