summary refs log tree commit diff
path: root/pkgs/development/libraries/celt/generic.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/libraries/celt/generic.nix')
-rw-r--r--pkgs/development/libraries/celt/generic.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/development/libraries/celt/generic.nix b/pkgs/development/libraries/celt/generic.nix
index 4ab554561f7..9d861f2c432 100644
--- a/pkgs/development/libraries/celt/generic.nix
+++ b/pkgs/development/libraries/celt/generic.nix
@@ -1,5 +1,6 @@
 { stdenv, version, src
 , liboggSupport ? true, libogg ? null # if disabled only the library will be built
+, prePatch ? ""
 , ...
 }:
 
@@ -10,6 +11,8 @@ stdenv.mkDerivation rec {
 
   inherit src;
 
+  inherit prePatch;
+
   buildInputs = []
     ++ stdenv.lib.optional liboggSupport libogg;