summary refs log tree commit diff
path: root/pkgs/development/libraries/mpfr
diff options
context:
space:
mode:
authorArtturin <Artturin@artturin.com>2022-05-21 19:58:22 +0300
committerArtturin <Artturin@artturin.com>2022-05-22 16:40:26 +0300
commitf002ffed9ab96ed074aba0f20c54e813e604fc4e (patch)
tree11037553cc1d26ba05be444a873e432ac3a82282 /pkgs/development/libraries/mpfr
parent39b85d1c2a85c91d5d14235cd5aeb8a3a3fae5e1 (diff)
downloadnixpkgs-f002ffed9ab96ed074aba0f20c54e813e604fc4e.tar
nixpkgs-f002ffed9ab96ed074aba0f20c54e813e604fc4e.tar.gz
nixpkgs-f002ffed9ab96ed074aba0f20c54e813e604fc4e.tar.bz2
nixpkgs-f002ffed9ab96ed074aba0f20c54e813e604fc4e.tar.lz
nixpkgs-f002ffed9ab96ed074aba0f20c54e813e604fc4e.tar.xz
nixpkgs-f002ffed9ab96ed074aba0f20c54e813e604fc4e.tar.zst
nixpkgs-f002ffed9ab96ed074aba0f20c54e813e604fc4e.zip
treewide: enable strictDeps in bootstrap packages
Diffstat (limited to 'pkgs/development/libraries/mpfr')
-rw-r--r--pkgs/development/libraries/mpfr/default.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkgs/development/libraries/mpfr/default.nix b/pkgs/development/libraries/mpfr/default.nix
index fc7eeeab942..bf1625cf2f9 100644
--- a/pkgs/development/libraries/mpfr/default.nix
+++ b/pkgs/development/libraries/mpfr/default.nix
@@ -19,6 +19,7 @@ stdenv.mkDerivation rec {
 
   outputs = [ "out" "dev" "doc" "info" ];
 
+  strictDeps = true;
   # mpfr.h requires gmp.h
   propagatedBuildInputs = [ gmp ];