mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-17 15:40:12 +03:00
22 lines
316 B
Nix
22 lines
316 B
Nix
![]() |
{ stdenv
|
||
|
, lib
|
||
|
, autoPatchelfHook
|
||
|
, src
|
||
|
}:
|
||
|
|
||
|
stdenv.mkDerivation {
|
||
|
inherit (src) name;
|
||
|
inherit src;
|
||
|
|
||
|
nativeBuildInputs = lib.optional stdenv.hostPlatform.isLinux autoPatchelfHook;
|
||
|
|
||
|
installPhase = ''
|
||
|
runHook preInstall
|
||
|
|
||
|
mkdir -p "$out/bin"
|
||
|
cp -r . "$out/bin/cache"
|
||
|
|
||
|
runHook postInstall
|
||
|
'';
|
||
|
}
|