nixos/packages/nameof.nix

14 lines
232 B
Nix
Raw Normal View History

2024-01-23 13:02:19 +08:00
{ lib, stdenv, src }: stdenv.mkDerivation
2023-09-28 11:17:50 +08:00
{
2024-01-23 13:02:19 +08:00
name = "nameof";
inherit src;
2023-09-28 11:17:50 +08:00
phases = [ "installPhase" ];
installPhase =
''
runHook preInstall
mkdir -p $out
cp -r $src/include $out
runHook postInstall
'';
}