X-Git-Url: https://git.immae.eu/?p=perso%2FImmae%2FConfig%2FNix%2FNUR.git;a=blobdiff_plain;f=pkgs%2Fwebapps%2Fnextcloud%2Fapps%2Fkeeweb.nix;h=866f33716307ccc7bf094a12eec23435148e61fb;hp=99713eeefc66c382983a1bbd4ba325234ae448de;hb=4e1d3c0f7d929a246448cee4b9dec5d33d0b775e;hpb=a40d4046b0d0adb3bf2f18822f7a39844c43e66e diff --git a/pkgs/webapps/nextcloud/apps/keeweb.nix b/pkgs/webapps/nextcloud/apps/keeweb.nix index 99713eee..866f3371 100644 --- a/pkgs/webapps/nextcloud/apps/keeweb.nix +++ b/pkgs/webapps/nextcloud/apps/keeweb.nix @@ -1,20 +1,16 @@ { buildApp }: buildApp rec { appName = "keeweb"; - version = "0.5.0"; + version = "0.5.1"; url = "https://github.com/jhass/nextcloud-keeweb/releases/download/v${version}/${appName}-${version}.tar.gz"; - sha256 = "0wdr6ywlirmac7w1ld5ma7fwb4bykclbxfq2sxwg6pvzfid5vc8x"; + sha256 = "1iaz4d6fz4zlgdn2hj7xx0nayyd0l865zxd6h795fpx5qpdj911h"; installPhase = '' mkdir -p $out cp -R . $out/ - sed -i -e 's/max-version="15"/max-version="16"/' $out/appinfo/info.xml ''; otherConfig = { - mimetypealiases = { - "x-application/kdbx" = "kdbx"; - }; mimetypemapping = { - "kdbx" = ["x-application/kdbx"]; + "kdbx" = ["application/x-kdbx"]; }; }; }