mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-13 17:23:08 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
40 lines
954 B
Nix
40 lines
954 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchurl
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "fortify-headers";
|
|
version = "1.1alpine3";
|
|
|
|
# upstream only accessible via git - unusable during bootstrap, hence
|
|
# extract from the alpine package
|
|
src = fetchurl {
|
|
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
|
|
hash = "sha256-8A8JcKHIBgXpUuIP4zs3Q1yBs5jCGd5F3H2E8UN/S2g=";
|
|
};
|
|
|
|
patches = [
|
|
./wchar-imports-skip.patch
|
|
./restore-macros.patch
|
|
];
|
|
|
|
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 ];
|
|
};
|
|
}
|