nixos/packages/pocketfft.nix

14 lines
275 B
Nix
Raw Normal View History

2024-09-07 17:13:32 +08:00
{ 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
'';
}