2023-09-15 18:26:04 +02:00
|
|
|
{ lib, stdenv, fetchurl, buildInputs, hash, version, libelf, url, knownVulnerabilities }:
|
2022-05-28 02:33:02 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "libdwarf";
|
|
|
|
inherit version;
|
|
|
|
|
|
|
|
src = fetchurl {
|
2023-09-15 18:26:04 +02:00
|
|
|
inherit url hash;
|
2022-05-28 02:33:02 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
configureFlags = [ "--enable-shared" "--disable-nonshared" ];
|
|
|
|
|
|
|
|
inherit buildInputs;
|
|
|
|
|
|
|
|
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 ];
|
2022-07-05 19:08:02 +02:00
|
|
|
inherit knownVulnerabilities;
|
2022-05-28 02:33:02 +02:00
|
|
|
};
|
|
|
|
}
|