Add libelf.

svn path=/nixpkgs/trunk/; revision=21400
This commit is contained in:
Ludovic Courtès 2010-04-28 12:36:58 +00:00
parent 7c038cdc06
commit a2bd7f82d7
2 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{ fetchurl, stdenv }:
stdenv.mkDerivation rec {
name = "libelf-0.8.13";
src = fetchurl {
url = "http://www.mr511.de/software/${name}.tar.gz";
sha256 = "0vf7s9dwk2xkmhb79aigqm0x0yfbw1j0b9ksm51207qwr179n6jr";
};
doCheck = true;
meta = {
description = "Libelf, an ELF object file access library";
homepage = http://www.mr511.de/software/english.html;
license = "LGPLv2+";
platforms = stdenv.lib.platforms.all;
maintainers = [ stdenv.lib.maintainers.ludo ];
};
}

View file

@ -4261,6 +4261,10 @@ let
inherit fetchurl stdenv ncurses;
};
libelf = import ../development/libraries/libelf {
inherit fetchurl stdenv;
};
liblo = import ../development/libraries/liblo {
inherit fetchurl stdenv;
};