nixpkgs/pkgs/by-name/li/libdwarf/common.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
559 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, buildInputs, hash, version, url, knownVulnerabilities }:
stdenv.mkDerivation rec {
pname = "libdwarf";
inherit version;
src = fetchurl {
2023-09-15 16:26:04 +00:00
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 ];
2022-07-05 17:08:02 +00:00
inherit knownVulnerabilities;
};
}