aff1f4ab94
The following parameters are now available: * hardeningDisable To disable specific hardening flags * hardeningEnable To enable specific hardening flags Only the cc-wrapper supports this right now, but these may be reused by other wrappers, builders or setup hooks. cc-wrapper supports the following flags: * fortify * stackprotector * pie (disabled by default) * pic * strictoverflow * format * relro * bindnow
30 lines
835 B
Nix
30 lines
835 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "untex-${version}";
|
|
version = "1.2";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.ctan.org/tex-archive/support/untex/${name}.tar.gz";
|
|
sha256 = "07p836jydd5yjy905m5ylnnac1h4cc4jsr41panqb808mlsiwmmy";
|
|
};
|
|
|
|
hardeningDisable = [ "format" ];
|
|
|
|
unpackPhase = "tar xf $src";
|
|
installTargets = "install install.man";
|
|
installFlags = "BINDIR=$(out)/bin MANDIR=$(out)/share/man/man1";
|
|
preBuild = ''
|
|
sed -i '1i#include <stdlib.h>\n#include <string.h>' untex.c
|
|
mkdir -p $out/bin $out/share/man/man1
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A utility which removes LaTeX commands from input";
|
|
homepage = https://www.ctan.org/pkg/untex;
|
|
license = licenses.gpl1;
|
|
maintainers = with maintainers; [ joachifm ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|