summary refs log tree commit diff
diff options
context:
space:
mode:
authorOrivej Desh <orivej@gmx.fr>2017-12-08 23:26:58 +0000
committerGitHub <noreply@github.com>2017-12-08 23:26:58 +0000
commit9e475320fca3290dca7a35475e290feef662dab6 (patch)
tree7519e9df44108560cd4d69fc73209499f2dc7318
parentcbaf7fe178f2ec59f88130dd7391747fbdb735b8 (diff)
parent7cb98a83246dc0541a60b1f18ff196505e18dca6 (diff)
downloadnixlib-9e475320fca3290dca7a35475e290feef662dab6.tar
nixlib-9e475320fca3290dca7a35475e290feef662dab6.tar.gz
nixlib-9e475320fca3290dca7a35475e290feef662dab6.tar.bz2
nixlib-9e475320fca3290dca7a35475e290feef662dab6.tar.lz
nixlib-9e475320fca3290dca7a35475e290feef662dab6.tar.xz
nixlib-9e475320fca3290dca7a35475e290feef662dab6.tar.zst
nixlib-9e475320fca3290dca7a35475e290feef662dab6.zip
Merge pull request #32479 from magnetophon/sord
sord: add pcre
-rw-r--r--pkgs/development/libraries/sord/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/sord/default.nix b/pkgs/development/libraries/sord/default.nix
index 57f81aa4613e..995ac631580d 100644
--- a/pkgs/development/libraries/sord/default.nix
+++ b/pkgs/development/libraries/sord/default.nix
@@ -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";