Merge remote-tracking branch 'upstream/master' into hardened-stdenv

This commit is contained in:
Robin Gloster
2016-08-03 13:34:44 +00:00
1099 changed files with 2664 additions and 513 deletions

View File

@@ -271,7 +271,7 @@ stdenv.mkDerivation rec {
'';
homepage = "http://www.methods.co.nz/asciidoc/";
license = licenses.gpl2Plus;
hydraPlatforms = platforms.linux;
platforms = platforms.unix;
maintainers = [ maintainers.bjornfor ];
};
}

View File

@@ -32,5 +32,6 @@ stdenv.mkDerivation rec {
description = "View diff on LaTeX source files on the generated PDF files";
maintainers = [ maintainers.DamienCassou ];
license = licenses.free; # https://gitlab.com/git-latexdiff/git-latexdiff/issues/9
platforms = platforms.unix;
};
}

View File

@@ -29,5 +29,6 @@ stdenv.mkDerivation rec {
homepage = http://www.chiark.greenend.org.uk/~sgtatham/halibut/;
license = licenses.mit;
maintainers = with maintainers; [ pSub ];
platforms = with platforms; unix;
};
}

View File

@@ -17,5 +17,6 @@ stdenv.mkDerivation rec {
homepage = http://pauillac.inria.fr/~maranget/hevea/;
license = licenses.qpl;
maintainers = with maintainers; [ pSub ];
platforms = with platforms; linux;
};
}

View File

@@ -46,7 +46,7 @@ stdenv.mkDerivation rec {
# licensed under GPLv2+ or MIT:
# https://raw.githubusercontent.com/fletcher/MultiMarkdown-4/master/LICENSE
license = with stdenv.lib.licenses; [ gpl2Plus ];
hydraPlatforms = platforms.all;
platforms = platforms.all;
maintainers = with stdenv.lib.maintainers; [ lowfatcomputing ];
};
}

View File

@@ -31,5 +31,6 @@ stdenv.mkDerivation rec {
license = stdenv.lib.licenses.gpl2Plus;
homepage = http://www.pps.jussieu.fr/~beffara/soft/rubber/;
maintainers = [ stdenv.lib.maintainers.ttuegel ];
platforms = stdenv.lib.platforms.unix;
};
}

View File

@@ -12,11 +12,6 @@ let auctex = stdenv.mkDerivation ( rec {
outputs = [ "out" "tex" ];
meta = {
description = "Extensible package for writing and formatting TeX files in GNU Emacs and XEmacs";
homepage = http://www.gnu.org/software/auctex;
};
src = fetchurl {
url = "mirror://gnu/${pname}/${name}.tar.gz";
sha256 = "1cf9fkkmzjxa4jvk6c01zgxdikr4zzb5pcx8i4r0hwdk0xljkbwq";
@@ -32,6 +27,12 @@ let auctex = stdenv.mkDerivation ( rec {
"--with-lispdir=\${out}/share/emacs/site-lisp"
"--with-texmf-dir=\${tex}"
];
meta = {
description = "Extensible package for writing and formatting TeX files in GNU Emacs and XEmacs";
homepage = http://www.gnu.org/software/auctex;
platforms = stdenv.lib.platforms.unix;
};
});
in auctex // { pkgs = [ auctex.tex ]; }

View File

@@ -67,5 +67,6 @@ stdenv.mkDerivation rec {
description = "A program to convert DocBook to DVI, PostScript or PDF via LaTeX or ConTeXt";
homepage = http://dblatex.sourceforge.net/;
license = stdenv.lib.licenses.gpl2Plus;
platforms = stdenv.lib.platforms.unix;
};
}

View File

@@ -14,4 +14,8 @@ stdenv.mkDerivation {
mkdir -p $out/share/texmf-nix/tex/generic/lkproof
cp -prd *.sty $out/share/texmf-nix/tex/generic/lkproof
";
meta = {
platforms = stdenv.lib.platforms.unix;
};
}

View File

@@ -17,5 +17,6 @@ stdenv.mkDerivation {
meta = {
branch = "1";
platforms = stdenv.lib.platforms.unix;
};
}

View File

@@ -17,5 +17,6 @@ stdenv.mkDerivation {
meta = {
branch = "2";
platforms = stdenv.lib.platforms.unix;
};
}

View File

@@ -26,5 +26,6 @@ stdenv.mkDerivation {
meta = {
branch = "3";
platforms = stdenv.lib.platforms.unix;
};
}

View File

@@ -18,4 +18,8 @@ stdenv.mkDerivation {
mkdir -p $out/share/texmf-nix
cp -prd * $out/share/texmf-nix
";
meta = {
platforms = stdenv.lib.platforms.unix;
};
}

View File

@@ -31,5 +31,6 @@ stdenv.mkDerivation rec {
homepage = "http://tug.org/tex4ht/";
description = "A system to convert (La)TeX documents to HTML and various other formats";
license = stdenv.lib.licenses.lppl12;
platforms = stdenv.lib.platforms.unix;
};
}

View File

@@ -36,4 +36,8 @@ stdenv.mkDerivation rec {
sourceRoot = "${name}/xmlroff/";
patches = [./xmlroff.patch];
meta = {
platforms = stdenv.lib.platforms.unix;
};
}

View File

@@ -44,5 +44,6 @@ stdenv.mkDerivation rec {
license = stdenv.lib.licenses.gpl2Plus;
homepage = https://fedorahosted.org/xmlto/;
platforms = stdenv.lib.platforms.unix;
};
}