dynamips: 0.2.22 -> 0.2.23

This commit is contained in:
Anthony Roussel 2023-01-04 23:46:35 +01:00
parent df1d5f1dce
commit 7a5b362ea1
No known key found for this signature in database
GPG Key ID: 9DC4987B1A55E75E

View File

@ -4,17 +4,18 @@
, cmake
, libelf
, libpcap
, nix-update-script
}:
stdenv.mkDerivation rec {
pname = "dynamips";
version = "0.2.22";
version = "0.2.23";
src = fetchFromGitHub {
owner = "GNS3";
repo = pname;
rev = "v${version}";
sha256 = "1fjjjdaxlw1k95kyq73fndn21qfhrm4cn79av0i4sn7anhg8m83f";
hash = "sha256-+h+WsZ/QrDd+dNrR6CJb2uMG+vbUvK8GTxFJZOxknL0=";
};
nativeBuildInputs = [ cmake ];
@ -22,6 +23,10 @@ stdenv.mkDerivation rec {
cmakeFlags = [ "-DDYNAMIPS_CODE=stable" ];
passthru = {
updateScript = nix-update-script { };
};
meta = with lib; {
inherit (src.meta) homepage;
description = "A Cisco router emulator";