mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-07 13:33:12 +00:00
82b4e7aba9
https://github.com/GNS3/gns3-server/releases/tag/v2.2.46 https://github.com/GNS3/gns3-server/compare/v2.2.45...v2.2.46
37 lines
792 B
Nix
37 lines
792 B
Nix
{ callPackage
|
|
, libsForQt5
|
|
}:
|
|
|
|
let
|
|
mkGui = args: callPackage (import ./gui.nix (args)) {
|
|
inherit (libsForQt5) wrapQtAppsHook;
|
|
};
|
|
|
|
mkServer = args: callPackage (import ./server.nix (args)) { };
|
|
in {
|
|
|
|
guiStable = mkGui {
|
|
channel = "stable";
|
|
version = "2.2.46";
|
|
hash = "sha256-i/Eq66dYDGR4RLJ76ZlKruhU0KC9KlMMf8Wb91ZoyY0=";
|
|
};
|
|
|
|
guiPreview = mkGui {
|
|
channel = "stable";
|
|
version = "2.2.46";
|
|
hash = "sha256-i/Eq66dYDGR4RLJ76ZlKruhU0KC9KlMMf8Wb91ZoyY0=";
|
|
};
|
|
|
|
serverStable = mkServer {
|
|
channel = "stable";
|
|
version = "2.2.46";
|
|
hash = "sha256-A6rAhc/EGvbqVdg1jXxNX3bKQLcGurqa7hKh9LvH+es=";
|
|
};
|
|
|
|
serverPreview = mkServer {
|
|
channel = "stable";
|
|
version = "2.2.46";
|
|
hash = "sha256-A6rAhc/EGvbqVdg1jXxNX3bKQLcGurqa7hKh9LvH+es=";
|
|
};
|
|
}
|