treewide: preserve hashes

avoid mass rebuild from the last commits
This commit is contained in:
Matthew Bauer 2018-10-16 23:19:34 -05:00
parent 007faf02ca
commit a5de0ca963
3 changed files with 6 additions and 0 deletions

View File

@ -101,6 +101,8 @@ stdenv.mkDerivation {
inherit src;
patchFlags = "";
patches = patches
++ optional stdenv.isDarwin ./darwin-no-system-python.patch;

View File

@ -15,6 +15,8 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ cmake ];
cmakeFlags = [];
outputs = [ "out" "dev" "lib" ];
doCheck = true;

View File

@ -13,6 +13,8 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ cmake libxslt/*manpage*/ ];
cmakeFlags = [];
# ATM bin/tidy is statically linked, as upstream provides no other option yet.
# https://github.com/htacg/tidy-html5/issues/326#issuecomment-160322107