aboutsummaryrefslogtreecommitdiff
path: root/pkgs/webapps/nextcloud/apps/gpxpod.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/webapps/nextcloud/apps/gpxpod.nix')
-rw-r--r--pkgs/webapps/nextcloud/apps/gpxpod.nix16
1 files changed, 0 insertions, 16 deletions
diff --git a/pkgs/webapps/nextcloud/apps/gpxpod.nix b/pkgs/webapps/nextcloud/apps/gpxpod.nix
deleted file mode 100644
index 0750144..0000000
--- a/pkgs/webapps/nextcloud/apps/gpxpod.nix
+++ /dev/null
@@ -1,16 +0,0 @@
1{ buildApp, nextcloudVersion }:
2assert nextcloudVersion >= 14 && nextcloudVersion <= 19;
3buildApp rec {
4 appName = "gpxpod";
5 version = "4.2.1";
6 url = "https://gitlab.com/eneiluj/gpxpod-oc/wikis/uploads/0361f9dc50633f0f39d929442935435c/${appName}-${version}.tar.gz";
7 sha256 = "0ycpychq6g8axdprvd0ahgdy2pwfdbfyf1pxk4cprr4ab986aq1x";
8 otherConfig = {
9 mimetypealiases = {
10 "application/gpx+xml" = "gpx";
11 };
12 mimetypemapping = {
13 "gpx" = ["application/gpx+xml"];
14 };
15 };
16}