about summary refs log tree commit diff
path: root/pkgs/applications/emulators
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2023-01-12 00:28:59 +0100
committerGitHub <noreply@github.com>2023-01-12 00:28:59 +0100
commit09f0112e6e66edfac1902fcc08ffc7d3242c3dcc (patch)
tree6694af21d12e05e9f01cca6bae07c9f1289e1070 /pkgs/applications/emulators
parent3b677226c865b06335b55e5bfed086fdfe9ebe3d (diff)
parent7a5b362ea10978a00dde812922388db2956dcb09 (diff)
Merge pull request #209102 from anthonyroussel/dynamips
Diffstat (limited to 'pkgs/applications/emulators')
-rw-r--r--pkgs/applications/emulators/dynamips/default.nix9
1 files changed, 7 insertions, 2 deletions
diff --git a/pkgs/applications/emulators/dynamips/default.nix b/pkgs/applications/emulators/dynamips/default.nix
index 9c7261f093014..80910700da933 100644
--- a/pkgs/applications/emulators/dynamips/default.nix
+++ b/pkgs/applications/emulators/dynamips/default.nix
@@ -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";