e2fsprogs: allow static build

This commit is contained in:
Marco A L Barbosa
2019-12-05 11:55:24 -03:00
parent 62d0993e87
commit f6ea33023e
2 changed files with 11 additions and 4 deletions
+4 -2
View File
@@ -1,4 +1,4 @@
{ stdenv, buildPackages, fetchurl, fetchpatch, pkgconfig, libuuid, gettext, texinfo }:
{ stdenv, buildPackages, fetchurl, fetchpatch, pkgconfig, libuuid, gettext, texinfo, shared ? true }:
stdenv.mkDerivation rec {
pname = "e2fsprogs";
@@ -36,7 +36,9 @@ stdenv.mkDerivation rec {
configureFlags =
if stdenv.isLinux then [
"--enable-elf-shlibs"
# It seems that the e2fsprogs is one of the few packages that cannot be
# build with shared and static libs.
(if shared then "--enable-elf-shlibs" else "--disable-elf-shlibs")
"--enable-symlink-install"
"--enable-relative-symlinks"
"--with-crond-dir=no"