summary refs log tree commit diff
path: root/pkgs/development/tools
diff options
context:
space:
mode:
authorMartin Bravenboer <martin.bravenboer@logicblox.com>2005-08-17 18:39:04 +0000
committerMartin Bravenboer <martin.bravenboer@logicblox.com>2005-08-17 18:39:04 +0000
commit0f8f7c03ff5e066fc7a57bfc1746fba8e335cfbe (patch)
treee558188069214d3cd5dc0d3e1ac33a8bc4a7a122 /pkgs/development/tools
parent5d98173434e41511e1f256f515a6a7ce6dc5f740 (diff)
downloadnixlib-0f8f7c03ff5e066fc7a57bfc1746fba8e335cfbe.tar
nixlib-0f8f7c03ff5e066fc7a57bfc1746fba8e335cfbe.tar.gz
nixlib-0f8f7c03ff5e066fc7a57bfc1746fba8e335cfbe.tar.bz2
nixlib-0f8f7c03ff5e066fc7a57bfc1746fba8e335cfbe.tar.lz
nixlib-0f8f7c03ff5e066fc7a57bfc1746fba8e335cfbe.tar.xz
nixlib-0f8f7c03ff5e066fc7a57bfc1746fba8e335cfbe.tar.zst
nixlib-0f8f7c03ff5e066fc7a57bfc1746fba8e335cfbe.zip
sdf2-bundle now needs pkg-config
svn path=/nixpkgs/trunk/; revision=3629
Diffstat (limited to 'pkgs/development/tools')
-rw-r--r--pkgs/development/tools/parsing/sdf/sdf2-bundle-2.3.1.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/tools/parsing/sdf/sdf2-bundle-2.3.1.nix b/pkgs/development/tools/parsing/sdf/sdf2-bundle-2.3.1.nix
index 7c043668db5b..a2120ed000d6 100644
--- a/pkgs/development/tools/parsing/sdf/sdf2-bundle-2.3.1.nix
+++ b/pkgs/development/tools/parsing/sdf/sdf2-bundle-2.3.1.nix
@@ -1,12 +1,12 @@
-{stdenv, fetchurl, aterm, getopt}:
+{stdenv, fetchurl, aterm, getopt, pkgconfig}:
 
 stdenv.mkDerivation {
-  name = "sdf2-bundle-2.3";
+  name = "sdf2-bundle-2.3.1";
   src = fetchurl {
     url = ftp://ftp.stratego-language.org/pub/stratego/sdf2/sdf2-bundle-2.3.1/sdf2-bundle-2.3.1.tar.gz;
     md5 = "4576b0b5315dccae8b038c53305c6979";
   };
 
-  buildInputs = [aterm];
+  buildInputs = [aterm pkgconfig];
   propagatedBuildInputs = [getopt];
 }