Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at netboot-syslinux-multiplatform 24 lines 571 B view raw
1{ lib, stdenv, fetchurl, buildInputs, sha512, version, libelf, url, knownVulnerabilities }: 2 3stdenv.mkDerivation rec { 4 pname = "libdwarf"; 5 inherit version; 6 7 src = fetchurl { 8 inherit url sha512; 9 }; 10 11 configureFlags = [ "--enable-shared" "--disable-nonshared" ]; 12 13 inherit buildInputs; 14 15 outputs = [ "bin" "lib" "dev" "out" ]; 16 17 meta = { 18 homepage = "https://github.com/davea42/libdwarf-code"; 19 platforms = lib.platforms.unix; 20 license = lib.licenses.lgpl21Plus; 21 maintainers = [ lib.maintainers.atry ]; 22 inherit knownVulnerabilities; 23 }; 24}