summary refs log tree commit diff
path: root/pkgs/development/libraries/libvpx
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/libvpx
parent98662eba0e99d462071003bcef55ee8b61ea4e86 (diff)
downloadnixpkgs-9e78f76aded0a098f7fd19f22d18f4c7f7c32ec0.tar
nixpkgs-9e78f76aded0a098f7fd19f22d18f4c7f7c32ec0.tar.gz
nixpkgs-9e78f76aded0a098f7fd19f22d18f4c7f7c32ec0.tar.bz2
nixpkgs-9e78f76aded0a098f7fd19f22d18f4c7f7c32ec0.tar.lz
nixpkgs-9e78f76aded0a098f7fd19f22d18f4c7f7c32ec0.tar.xz
nixpkgs-9e78f76aded0a098f7fd19f22d18f4c7f7c32ec0.tar.zst
nixpkgs-9e78f76aded0a098f7fd19f22d18f4c7f7c32ec0.zip
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/libvpx')
-rw-r--r--pkgs/development/libraries/libvpx/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/libraries/libvpx/default.nix b/pkgs/development/libraries/libvpx/default.nix
index ee36365c03f..d80fe6a998c 100644
--- a/pkgs/development/libraries/libvpx/default.nix
+++ b/pkgs/development/libraries/libvpx/default.nix
@@ -114,7 +114,7 @@ stdenv.mkDerivation rec {
     (if isDarwin || isCygwin then
        "--enable-static --disable-shared"
      else
-       "--disable-static --enable-shared")
+       "--enable-shared")
     (enableFeature smallSupport "small")
     (enableFeature postprocVisualizerSupport "postproc-visualizer")
     (enableFeature unitTestsSupport "unit-tests")