mirror of
https://gitlab.com/manzerbredes/paper-lowrate-iot.git
synced 2025-06-07 07:07:40 +00:00
18 lines
294 B
Nix
18 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
|
|
'';
|
|
|
|
}
|