about summary refs log tree commit diff
path: root/pkgs/development/libraries/librep
diff options
context:
space:
mode:
authorNiklas Hambüchen <mail@nh2.me>2019-08-31 14:10:53 +0200
committerSamuel Leathers <disasm@gmail.com>2019-08-31 08:10:53 -0400
commit9e78f76aded0a098f7fd19f22d18f4c7f7c32ec0 (patch)
tree73f6b295201f1a8a6a727591041534c6cca949c3 /pkgs/development/libraries/librep
parent98662eba0e99d462071003bcef55ee8b61ea4e86 (diff)
treewide: Remove unnecessary `--disable-static` (#66759)
* freetype: Remove unnecessary `--disable-static`.

The true-by-default `dontDisableStatic` already takes care of it.

Fixes freetype not being overridable to have static libs.

* treewide: Remove unnecessary `--disable-static`.

The true-by-default `dontDisableStatic` already takes care of it.

Fixes these packages not being overridable to have static libs.
Diffstat (limited to 'pkgs/development/libraries/librep')
-rw-r--r--pkgs/development/libraries/librep/default.nix4
1 files changed, 0 insertions, 4 deletions
diff --git a/pkgs/development/libraries/librep/default.nix b/pkgs/development/libraries/librep/default.nix
index f11a7eb1fe542..43f80076328ee 100644
--- a/pkgs/development/libraries/librep/default.nix
+++ b/pkgs/development/libraries/librep/default.nix
@@ -19,10 +19,6 @@ stdenv.mkDerivation rec {
   buildInputs = [ readline texinfo ];
   propagatedBuildInputs = [ gdbm gmp libffi ];
 
-  configureFlags = [
-    "--disable-static"
-  ];
-
   setupHook = ./setup-hook.sh;
 
   meta = {