Merge branch 'master' into staging-next

This commit is contained in:
Uli Baum
2018-09-13 10:08:53 +02:00
752 changed files with 25957 additions and 14014 deletions

View File

@@ -43,5 +43,6 @@ stdenv.mkDerivation rec {
license = licenses.gpl3Plus;
maintainers = [ maintainers.taktoa ];
platforms = with platforms; linux;
broken = true; # 2018-09-08
};
}

View File

@@ -2,17 +2,19 @@
stdenv.mkDerivation rec {
name = "scdoc-${version}";
version = "1.4.1";
version = "1.4.2";
src = fetchurl {
url = "https://git.sr.ht/~sircmpwn/scdoc/snapshot/scdoc-${version}.tar.xz";
sha256 = "14nabq1hrz5jvilx22yxbqjsd9s4ll0fnl750n1qbyyxw2m6vj9b";
sha256 = "1hhvg9cifx1v8b5i91lgq5cjdcskzl3rz7vwmwdq7ad0nqnykz82";
};
postPatch = ''
substituteInPlace Makefile \
--replace "-static" "" \
--replace "/usr/local" "$out"
# It happens from time to time that the version wasn't updated:
sed -iE 's/VERSION=[0-9]\.[0-9]\.[0-9]/VERSION=${version}/' Makefile
'';
doCheck = true;

View File

@@ -35,7 +35,7 @@ let
mkUniquePkgs = pkgs: fastUnique (a: b: a < b) # highlighting hack: >
# here we deal with those dummy packages needed for hyphenation filtering
(map (p: if lib.isDerivation p then builtins.toPath p else "") pkgs);
(map (p: if lib.isDerivation p then p.outPath else "") pkgs);
in buildEnv {
name = "texlive-${extraName}-${bin.texliveYear}";