libdwarf_0_4: init at 0.4.0

This commit is contained in:
Yang, Bo 2022-05-26 00:25:32 +00:00
parent c46c3ccefa
commit 3654935a3a
3 changed files with 31 additions and 0 deletions

View file

@ -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";

View 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 ];
};
}

View file

@ -18429,6 +18429,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 { };