forked from mirrors/nixpkgs
libunwind added
svn path=/nixpkgs/trunk/; revision=10345
This commit is contained in:
parent
bf29533257
commit
cb97c35267
14
pkgs/development/libraries/libunwind/default.nix
Normal file
14
pkgs/development/libraries/libunwind/default.nix
Normal 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";
|
||||
};
|
||||
}
|
|
@ -2305,6 +2305,10 @@ rec {
|
|||
inherit fetchurl stdenv;
|
||||
};
|
||||
|
||||
libunwind = import ../development/libraries/libunwind {
|
||||
inherit fetchurl stdenv;
|
||||
};
|
||||
|
||||
libvorbis = import ../development/libraries/libvorbis {
|
||||
inherit fetchurl stdenv libogg;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue