11 stdenv.mkDerivation rec {
15 src = fetchFromGitHub {
18 rev = "refs/tags/v${version}";
19 hash = "sha256-+h+WsZ/QrDd+dNrR6CJb2uMG+vbUvK8GTxFJZOxknL0=";
22 nativeBuildInputs = [ cmake ];
30 (lib.cmakeFeature "DYNAMIPS_CODE" "stable")
34 updateScript = nix-update-script { };
38 description = "Cisco router emulator";
40 Dynamips is an emulator computer program that was written to emulate Cisco
43 homepage = "https://github.com/GNS3/dynamips";
44 changelog = "https://github.com/GNS3/dynamips/releases/tag/v${version}";
45 license = licenses.gpl2Plus;
46 mainProgram = "dynamips";
47 maintainers = with maintainers; [
51 platforms = platforms.linux ++ platforms.darwin;