aboutsummaryrefslogtreecommitdiff
path: root/flakes/mypackages/pkgs/webapps/nextcloud/apps/side_menu.nix
blob: da48f91b1af50cbfd9b7dc9ba689dfd7f315e1f9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ buildApp, nextcloudVersion }:
let
  side_menu_3_10_3 = buildApp rec {
    appName = "side_menu";
    version = "3.10.3";
    url = "https://gitnet.fr/attachments/9c9be610-5d3b-414d-a523-396c237c15ef";
    filename = "${appName}-${version}.tar.gz";
    sha256 = "sha256-WKbc6Ln6v3LYyRzwy0xAOmXilbqrWGS8XGWIT+TajdM=";
  };
  versions = {
    "25" = side_menu_3_10_3;
    "26" = side_menu_3_10_3;
    "27" = side_menu_3_10_3;
  };
in
  versions."${builtins.toString nextcloudVersion}" or (throw "Unsupported version for nextcloud app side_menu")