summary refs log tree commit diff
path: root/pkgs/development/haskell-modules/generic-builder.nix
diff options
context:
space:
mode:
authorJoe Hermaszewski <git@monoid.al>2020-10-21 22:53:44 +0800
committerPeter Simons <simons@cryp.to>2020-10-23 21:00:26 +0200
commit55a9078748e2255f6f35feb1232d5427dc23a3ba (patch)
tree6679f4bd37fc33fce44300a87c467ff8adffb9b4 /pkgs/development/haskell-modules/generic-builder.nix
parent58ad0afc3c85623ca53aae276147a02740ad4316 (diff)
downloadnixpkgs-55a9078748e2255f6f35feb1232d5427dc23a3ba.tar
nixpkgs-55a9078748e2255f6f35feb1232d5427dc23a3ba.tar.gz
nixpkgs-55a9078748e2255f6f35feb1232d5427dc23a3ba.tar.bz2
nixpkgs-55a9078748e2255f6f35feb1232d5427dc23a3ba.tar.lz
nixpkgs-55a9078748e2255f6f35feb1232d5427dc23a3ba.tar.xz
nixpkgs-55a9078748e2255f6f35feb1232d5427dc23a3ba.tar.zst
nixpkgs-55a9078748e2255f6f35feb1232d5427dc23a3ba.zip
haskell-generic-builder: Add missing preHaddock and postHaddock arguments
Diffstat (limited to 'pkgs/development/haskell-modules/generic-builder.nix')
-rw-r--r--pkgs/development/haskell-modules/generic-builder.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/development/haskell-modules/generic-builder.nix b/pkgs/development/haskell-modules/generic-builder.nix
index afb0087a028..a221ce38c8a 100644
--- a/pkgs/development/haskell-modules/generic-builder.nix
+++ b/pkgs/development/haskell-modules/generic-builder.nix
@@ -64,6 +64,7 @@ in
 , patches ? null, patchPhase ? null, prePatch ? "", postPatch ? ""
 , preConfigure ? null, postConfigure ? null
 , preBuild ? null, postBuild ? null
+, preHaddock ? null, postHaddock ? null
 , installPhase ? null, preInstall ? null, postInstall ? null
 , checkPhase ? null, preCheck ? null, postCheck ? null
 , preFixup ? null, postFixup ? null
@@ -658,6 +659,8 @@ stdenv.mkDerivation ({
 // optionalAttrs (args ? checkPhase)             { inherit checkPhase; }
 // optionalAttrs (args ? preCheck)               { inherit preCheck; }
 // optionalAttrs (args ? postCheck)              { inherit postCheck; }
+// optionalAttrs (args ? preHaddock)             { inherit preHaddock; }
+// optionalAttrs (args ? postHaddock)            { inherit postHaddock; }
 // optionalAttrs (args ? preInstall)             { inherit preInstall; }
 // optionalAttrs (args ? installPhase)           { inherit installPhase; }
 // optionalAttrs (args ? postInstall)            { inherit postInstall; }