Merge pull request #170927 from Atry/libdwarf_0_4
This commit is contained in:
commit
bc475bd757
3 changed files with 31 additions and 0 deletions
|
@ -1170,6 +1170,12 @@
|
|||
githubId = 706854;
|
||||
name = "Etienne Laurin";
|
||||
};
|
||||
atry = {
|
||||
name = "Bo Yang";
|
||||
email = "atry@fb.com";
|
||||
github = "Atry";
|
||||
githubId = 601530;
|
||||
};
|
||||
attila-lendvai = {
|
||||
name = "Attila Lendvai";
|
||||
email = "attila@lendvai.name";
|
||||
|
|
24
pkgs/development/libraries/libdwarf/0.4.nix
Normal file
24
pkgs/development/libraries/libdwarf/0.4.nix
Normal file
|
@ -0,0 +1,24 @@
|
|||
{ lib, stdenv, fetchurl, zlib }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "libdwarf";
|
||||
version = "0.4.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://www.prevanders.net/libdwarf-${version}.tar.xz";
|
||||
sha512 = "30e5c6c1fc95aa28a014007a45199160e1d9ba870b196d6f98e6dd21a349e9bb31bba1bd6817f8ef9a89303bed0562182a7d46fcbb36aedded76c2f1e0052e1e";
|
||||
};
|
||||
|
||||
configureFlags = [ "--enable-shared" "--disable-nonshared" ];
|
||||
|
||||
buildInputs = [ zlib ];
|
||||
|
||||
outputs = [ "bin" "lib" "dev" "out" ];
|
||||
|
||||
meta = {
|
||||
homepage = "https://github.com/davea42/libdwarf-code";
|
||||
platforms = lib.platforms.unix;
|
||||
license = lib.licenses.lgpl21Plus;
|
||||
maintainers = [ lib.maintainers.atry ];
|
||||
};
|
||||
}
|
|
@ -18439,6 +18439,7 @@ with pkgs;
|
|||
|
||||
inherit (callPackage ../development/libraries/libdwarf { })
|
||||
libdwarf dwarfdump;
|
||||
libdwarf_0_4 = callPackage ../development/libraries/libdwarf/0.4.nix { };
|
||||
|
||||
libe57format = callPackage ../development/libraries/libe57format { };
|
||||
|
||||
|
|
Loading…
Reference in a new issue