subversion: remove extraBuildInputs

No longer required since all subversion versions now share the same
buildInputs.
This commit is contained in:
Rouven Czerwinski 2021-04-19 16:54:11 +02:00
parent bf7940d1a8
commit d18df82226

View File

@ -17,7 +17,7 @@ assert javahlBindings -> jdk != null && perl != null;
let let
common = { version, sha256, extraBuildInputs ? [ ] }: stdenv.mkDerivation (rec { common = { version, sha256 }: stdenv.mkDerivation (rec {
inherit version; inherit version;
pname = "subversion"; pname = "subversion";
@ -29,8 +29,7 @@ let
# Can't do separate $lib and $bin, as libs reference bins # Can't do separate $lib and $bin, as libs reference bins
outputs = [ "out" "dev" "man" ]; outputs = [ "out" "dev" "man" ];
buildInputs = [ zlib apr aprutil sqlite openssl ] buildInputs = [ zlib apr aprutil sqlite openssl lz4 utf8proc ]
++ extraBuildInputs
++ lib.optional httpSupport serf ++ lib.optional httpSupport serf
++ lib.optional pythonBindings python ++ lib.optional pythonBindings python
++ lib.optional perlBindings perl ++ lib.optional perlBindings perl
@ -114,12 +113,10 @@ in {
subversion_1_10 = common { subversion_1_10 = common {
version = "1.10.7"; version = "1.10.7";
sha256 = "1nhrd8z6c94sc0ryrzpyd98qdn5a5g3x0xv1kdb9da4drrk8y2ww"; sha256 = "1nhrd8z6c94sc0ryrzpyd98qdn5a5g3x0xv1kdb9da4drrk8y2ww";
extraBuildInputs = [ lz4 utf8proc ];
}; };
subversion = common { subversion = common {
version = "1.12.2"; version = "1.12.2";
sha256 = "0wgpw3kzsiawzqk4y0xgh1z93kllxydgv4lsviim45y5wk4bbl1v"; sha256 = "0wgpw3kzsiawzqk4y0xgh1z93kllxydgv4lsviim45y5wk4bbl1v";
extraBuildInputs = [ lz4 utf8proc ];
}; };
} }