nixos/packages/zpp-bits.nix

12 lines
198 B
Nix
Raw Normal View History

{ stdenv, src }: stdenv.mkDerivation
2023-09-25 21:24:25 +08:00
{
inherit src;
name = "zpp-bits";
2023-09-25 21:24:25 +08:00
phases = [ "installPhase" ];
installPhase =
''
mkdir -p $out/include
cp $src/zpp_bits.h $out/include
'';
}