mirror of
https://gitlab.com/manzerbredes/paper-lowrate-iot.git
synced 2025-06-06 22:57:40 +00:00
5 lines
265 B
Nix
5 lines
265 B
Nix
with (import (fetchTarball "https://github.com/NixOS/nixpkgs/archive/19.03.tar.gz") {});
|
|
rec {
|
|
ns3 = callPackage ./ns3 { inherit stdenv; inherit fetchurl; inherit python; inherit gsl; };
|
|
simulator = callPackage ./simulator { inherit stdenv; inherit ns3; };
|
|
}
|