mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-17 14:19:58 +03:00
Add libelf.
svn path=/nixpkgs/trunk/; revision=21400
This commit is contained in:
parent
7c038cdc06
commit
a2bd7f82d7
23
pkgs/development/libraries/libelf/default.nix
Normal file
23
pkgs/development/libraries/libelf/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user