587713944a
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
36 lines
792 B
Nix
36 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=";
|
|
};
|
|
}
|