Files
nixos/packages/atomkit.nix
2025-07-18 12:17:35 +08:00

17 lines
344 B
Nix

{ stdenv, src, autoPatchelfHook, xorg }: stdenv.mkDerivation
{
name = "atomkit";
inherit src;
dontConfigure = true;
dontBuild = true;
buildInputs = [ stdenv.cc.cc xorg.libX11 ];
nativeBuildInputs = [ autoPatchelfHook ];
installPhase =
''
runHook preInstall
mkdir -p $out
cp -r * $out
runHook postInstall
'';
}