···120 };
121 };
1220000000000123 meta = with lib; {
124 description = "Lightweight Identity and Authorization Management";
125 homepage = "https://canaille.readthedocs.io/en/latest/index.html";
···120 };
121 };
122123+ disabledTests = [
124+ # cause by authlib being too up-to-date for this version of canaille
125+ # see: https://github.com/NixOS/nixpkgs/issues/389861#issuecomment-2726361949
126+ # FIX: update and see if this is fixed
127+ "test_invalid_client[ldap_backend]"
128+ "test_invalid_client[memory_backend]"
129+ "test_invalid_client[sql_backend]"
130+ "test_password_reset[sql_backend]"
131+ ];
132+133 meta = with lib; {
134 description = "Lightweight Identity and Authorization Management";
135 homepage = "https://canaille.readthedocs.io/en/latest/index.html";
···4243 # Please keep the version x.y.0.z and do not update to x.y.76.z because the
44 # source of the latter disappears much faster.
45- version = "8.137.0.425";
46- revision = "384";
4748 rpath =
49 lib.makeLibraryPath [
···103 fetchurl {
104 name = "skypeforlinux-${version}-${revision}.snap";
105 url = "https://api.snapcraft.io/api/v1/snaps/download/QRDEfjn4WJYnm0FzDKwqqRZZI77awQEV_${revision}.snap";
106- hash = "sha512-JU6CtIJWwqP4CHsLXA1imYfx21ZYSbgbJ9iUsDQC67TRbgliI8TTJHPDHjOYbhVELvu/fAzbENVxCmKDwsQX6g==";
107 }
108 else
109 throw "Skype for linux is not supported on ${stdenv.hostPlatform.system}";
···4243 # Please keep the version x.y.0.z and do not update to x.y.76.z because the
44 # source of the latter disappears much faster.
45+ version = "8.138.0.203";
46+ revision = "386";
4748 rpath =
49 lib.makeLibraryPath [
···103 fetchurl {
104 name = "skypeforlinux-${version}-${revision}.snap";
105 url = "https://api.snapcraft.io/api/v1/snaps/download/QRDEfjn4WJYnm0FzDKwqqRZZI77awQEV_${revision}.snap";
106+ hash = "sha512-JTzZdCCyqGeEugFb3w37Mes0S4DlJuqw/ptSMegrppjQwq0mqOTQCOmnaCPA8pgBfCsPoZ3dnaaKt19YbyJWSg==";
107 }
108 else
109 throw "Skype for linux is not supported on ${stdenv.hostPlatform.system}";
···1{
2+ lib,
3+ stdenv,
4 runCommand,
5 R,
6 rstudio,
···56 ''
57 else
58 ''
59+ ${lib.optionalString stdenv.hostPlatform.isLinux ''
60+ # symlink files from unwrapped rstudio so that the desktop file and the icons
61+ # are also installed when using the wrapped version
62+ # TODO: figure out how to handle darwin .app structures
63+ ln -s ${rstudio}/share $out
64+ ''}
65+66 makeWrapper ${rstudio}/bin/rstudio $out/bin/rstudio \
67 --set R_PROFILE_USER $out/$fixLibsR
68 ''
···15 defaultVersion =
16 with lib.versions;
17 lib.switch rocq-core.version [
18+ { case = isEq "9.0"; out = "9.0.0"; }
19+ # the one below is artificial as stdlib was included in Coq before
20+ { case = isLt "9.0"; out = "9.0.0"; }
21 ] null;
22 releaseRev = v: "V${v}";
2324+ release."9.0.0".sha256 = "sha256-2l7ak5Q/NbiNvUzIVXOniEneDXouBMNSSVFbD1Pf8cQ=";
000000000002526+ mlPlugin = true;
00002728 meta = {
29 description = "The Rocq Proof Assistant -- Standard Library";