uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
62
pkgs/tools/text/highlight/default.nix
Normal file
62
pkgs/tools/text/highlight/default.nix
Normal file
|
|
@ -0,0 +1,62 @@
|
|||
{ lib, stdenv, fetchFromGitLab, getopt, lua, boost, pkg-config, swig, perl, gcc }:
|
||||
|
||||
let
|
||||
self = stdenv.mkDerivation rec {
|
||||
pname = "highlight";
|
||||
version = "4.2";
|
||||
|
||||
src = fetchFromGitLab {
|
||||
owner = "saalen";
|
||||
repo = "highlight";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-KkLN8b2sJhDbYVfNANEg1prPfIySoL9N48PSQyXqE8I=";
|
||||
};
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
nativeBuildInputs = [ pkg-config swig perl ]
|
||||
++ lib.optional stdenv.isDarwin gcc;
|
||||
|
||||
buildInputs = [ getopt lua boost ];
|
||||
|
||||
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";
|
||||
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
|
||||
Loading…
Add table
Add a link
Reference in a new issue