From 0f8f7c03ff5e066fc7a57bfc1746fba8e335cfbe Mon Sep 17 00:00:00 2001 From: Martin Bravenboer Date: Wed, 17 Aug 2005 18:39:04 +0000 Subject: [PATCH] sdf2-bundle now needs pkg-config svn path=/nixpkgs/trunk/; revision=3629 --- pkgs/development/tools/parsing/sdf/sdf2-bundle-2.3.1.nix | 6 +++--- pkgs/system/all-packages-generic.nix | 2 +- 2 files changed, 4 insertions(+), 4 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 7c043668db5..a2120ed000d 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]; } diff --git a/pkgs/system/all-packages-generic.nix b/pkgs/system/all-packages-generic.nix index 57dc7fc6a7a..d9833e85e86 100644 --- a/pkgs/system/all-packages-generic.nix +++ b/pkgs/system/all-packages-generic.nix @@ -619,7 +619,7 @@ rec { }; sdf = (import ../development/tools/parsing/sdf) { - inherit fetchurl stdenv aterm getopt; + inherit fetchurl stdenv aterm getopt pkgconfig; }; expat = (import ../development/libraries/expat) {