Merge pull request #133477 from NixOS/backport-133462-to-release-21.05

[Backport release-21.05] sparse: add perl to buildInputs
This commit is contained in:
Artturi 2021-08-12 04:44:55 +03:00 committed by GitHub
commit b684f30fd3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,4 +1,4 @@
{ fetchurl, lib, stdenv, pkg-config, libxml2, llvm }:
{ fetchurl, lib, stdenv, pkg-config, libxml2, llvm, perl }:
stdenv.mkDerivation rec {
name = "sparse-0.5.0";
@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
'';
nativeBuildInputs = [ pkg-config ];
buildInputs = [ libxml2 llvm ];
buildInputs = [ libxml2 llvm perl ];
doCheck = true;
meta = {