summary refs log tree commit diff
path: root/pkgs/development/libraries/libunwind
diff options
context:
space:
mode:
authorYury G. Kudryashov <urkud.urkud@gmail.com>2008-01-28 19:45:30 +0000
committerYury G. Kudryashov <urkud.urkud@gmail.com>2008-01-28 19:45:30 +0000
commitcb97c35267ffeb44d8b69dea6cf232d71f59a6f6 (patch)
tree8f371af748bf5c20a3239d7278d539b7e53b756d /pkgs/development/libraries/libunwind
parentbf2953325739fbec5d7f65436585490512437d8a (diff)
downloadnixpkgs-cb97c35267ffeb44d8b69dea6cf232d71f59a6f6.tar
nixpkgs-cb97c35267ffeb44d8b69dea6cf232d71f59a6f6.tar.gz
nixpkgs-cb97c35267ffeb44d8b69dea6cf232d71f59a6f6.tar.bz2
nixpkgs-cb97c35267ffeb44d8b69dea6cf232d71f59a6f6.tar.lz
nixpkgs-cb97c35267ffeb44d8b69dea6cf232d71f59a6f6.tar.xz
nixpkgs-cb97c35267ffeb44d8b69dea6cf232d71f59a6f6.tar.zst
nixpkgs-cb97c35267ffeb44d8b69dea6cf232d71f59a6f6.zip
libunwind added
svn path=/nixpkgs/trunk/; revision=10345
Diffstat (limited to 'pkgs/development/libraries/libunwind')
-rw-r--r--pkgs/development/libraries/libunwind/default.nix14
1 files changed, 14 insertions, 0 deletions
diff --git a/pkgs/development/libraries/libunwind/default.nix b/pkgs/development/libraries/libunwind/default.nix
new file mode 100644
index 00000000000..52ed30c0ae9
--- /dev/null
+++ b/pkgs/development/libraries/libunwind/default.nix
@@ -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";
+	};
+}