24 lines
567 B
Nix
24 lines
567 B
Nix
{ lib, stdenv, fetchurl, buildInputs, hash, version, libelf, url, knownVulnerabilities }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libdwarf";
|
|
inherit version;
|
|
|
|
src = fetchurl {
|
|
inherit url hash;
|
|
};
|
|
|
|
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 ];
|
|
inherit knownVulnerabilities;
|
|
};
|
|
}
|