core/pkgs/by-name/fo/fortify-headers/default.nix

35 lines
947 B
Nix
Raw Normal View History

2024-05-13 21:24:10 +00:00
{ lib, stdenv, fetchurl }:
2024-05-02 00:46:19 +00:00
stdenv.mkDerivation {
pname = "fortify-headers";
version = "1.1alpine3";
# upstream only accessible via git - unusable during bootstrap, hence
# extract from the alpine package
src = fetchurl {
2024-05-13 21:24:10 +00:00
url =
"https://dl-cdn.alpinelinux.org/alpine/v3.18/main/x86_64/fortify-headers-1.1-r3.apk";
name = "fortify-headers.tar.gz"; # ensure it's extracted as a .tar.gz
2024-05-02 00:46:19 +00:00
hash = "sha256-8A8JcKHIBgXpUuIP4zs3Q1yBs5jCGd5F3H2E8UN/S2g=";
};
2024-05-13 21:24:10 +00:00
patches = [ ./wchar-imports-skip.patch ./restore-macros.patch ];
2024-05-02 00:46:19 +00:00
installPhase = ''
runHook preInstall
mkdir -p $out
cp -r include/fortify $out/include
runHook postInstall
'';
meta = {
description = "Standalone header-based fortify-source implementation";
homepage = "https://git.2f30.org/fortify-headers";
license = lib.licenses.bsd0;
platforms = lib.platforms.all;
maintainers = with lib.maintainers; [ ris ];
};
}