mirror of
https://gitlab.com/manzerbredes/paper-lowrate-iot.git
synced 2025-06-07 15:17:40 +00:00
19 lines
294 B
Nix
19 lines
294 B
Nix
![]() |
{ stdenv, ns3 }:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
##### Configure NIX #####
|
||
|
name="simulator";
|
||
|
src=./src;
|
||
|
|
||
|
##### Export ns3 location #####
|
||
|
NS3_PATH=ns3;
|
||
|
|
||
|
##### Configure Phases #####
|
||
|
buildPhase=''make'';
|
||
|
installPhase=''
|
||
|
mkdir -p $out/bin
|
||
|
install -D -t $out/bin simulator
|
||
|
'';
|
||
|
|
||
|
}
|