libunwind added

svn path=/nixpkgs/branches/stdenv-updates/; revision=10194
This commit is contained in:
Yury G. Kudryashov 2008-01-17 13:00:51 +00:00
parent 4eeee85ad1
commit 8db01883b8
2 changed files with 18 additions and 0 deletions

View file

@ -0,0 +1,14 @@
args: with args;
stdenv.mkDerivation rec {
name = "libunwind-0.98.6";
src = fetchurl {
url = "http://download.savannah.nongnu.org/releases/libunwind/${name}.tar.gz";
sha256 = "1qfxqkyx4r5dmwajyhvsyyl8zwxs6n2rcg7a61fgfdfp0gxvpzgx";
};
configureFlags = "--enable-shared --disable-static";
meta = {
homepage = http://www.nongnu.org/libunwind;
description = "The primary goal of this project is to define a portable
and efficient API to determine the call-chain of a program";
};
}

View file

@ -2209,6 +2209,10 @@ rec {
inherit fetchurl stdenv; inherit fetchurl stdenv;
}; };
libunwind = import ../development/libraries/libunwind {
inherit fetchurl stdenv;
};
libvorbis = import ../development/libraries/libvorbis { libvorbis = import ../development/libraries/libvorbis {
inherit fetchurl stdenv libogg; inherit fetchurl stdenv libogg;
}; };