nixpkgs/pkgs/development/libraries/libdwarf/common.nix

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

24 lines
515 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, buildInputs, sha512, version, libelf, url }:
stdenv.mkDerivation rec {
pname = "libdwarf";
inherit version;
src = fetchurl {
inherit url sha512;
};
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 ];
};
}