Unverified Commit c566a368 authored by Jonas Heinrich's avatar Jonas Heinrich Committed by GitHub
Browse files

feishin: 0.9.0 -> 0.10.1 (#344865)

parents 5d788ab3 23eb0dd8
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -432,6 +432,8 @@
- `zx` was updated to v8, which introduces several breaking changes.
  See the [v8 changelog](https://github.com/google/zx/releases/tag/8.0.0) for more information.

- `feishin` removed support for Navidrome `< v0.53.2` due to an API change; more information in the [v0.10.0 release notes](https://github.com/jeffvli/feishin/releases/tag/v0.10.0).

- The `dnscrypt-wrapper` module was removed since the project has been effectively unmaintained since 2018; moreover the NixOS module had to rely on an abandoned version of dnscrypt-proxy v1 for the rotation of keys.
  To wrap a resolver with DNSCrypt you can instead use `dnsdist`. See options `services.dnsdist.dnscrypt.*`

+4 −4
Original line number Diff line number Diff line
@@ -11,13 +11,13 @@
}:
let
  pname = "feishin";
  version = "0.9.0";
  version = "0.10.1";

  src = fetchFromGitHub {
    owner = "jeffvli";
    repo = "feishin";
    rev = "v${version}";
    hash = "sha256-3gQ39GhYPme0kGAtM5DsG9RYwf23OAdkp3uVt7c1SQU=";
    hash = "sha256-YdtGhGcG5qVoVa1534NQIbI02gy0pzR9U1PU2lL1u/A=";
  };

  electron = electron_31;
@@ -26,7 +26,7 @@ buildNpmPackage {
  inherit pname version;

  inherit src;
  npmDepsHash = "sha256-u+zbPB6u9EYVr9oHnLlKC0AyCLn4nq4TFVPSs2oWsbo=";
  npmDepsHash = "sha256-3fY0NCswRTnpDDsr1fDK9YZm8TUKCIMJ1+yw38dj0M8=";

  npmFlags = [ "--legacy-peer-deps" ];
  makeCacheWritable = true;
@@ -60,7 +60,7 @@ buildNpmPackage {
        inherit version;

        src = "${src}/release/app";
        npmDepsHash = "sha256-3qUmXRiAloGgLAErR16+BGEUT0ZwHHhCxMDQRCENQB4=";
        npmDepsHash = "sha256-YkLT69QU7WMGRe95rfZ8TmnfIdWwtpWaqGY+wU48veQ=";

        npmFlags = [ "--ignore-scripts" ];
        dontNpmBuild = true;