Merge pull request #32479 from magnetophon/sord

sord: add pcre
This commit is contained in:
Orivej Desh 2017-12-08 23:26:58 +00:00 committed by GitHub
commit 9e475320fc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,4 +1,4 @@
{ stdenv, fetchurl, pkgconfig, python, serd }:
{ stdenv, fetchurl, pkgconfig, python, serd, pcre }:
stdenv.mkDerivation rec {
name = "sord-${version}";
@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ python serd ];
buildInputs = [ python serd pcre ];
configurePhase = "${python.interpreter} waf configure --prefix=$out";