nixos/packages/pocketfft.nix
2024-09-07 17:21:11 +08:00

14 lines
275 B
Nix

{ lib, stdenv, src }: stdenv.mkDerivation
{
name = "pocketfft";
inherit src;
phases = [ "installPhase" ];
installPhase =
''
runHook preInstall
mkdir -p $out/include
cp -r $src/pocketfft_hdronly.h $out/include/pocketfft.h
runHook postInstall
'';
}