summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2023-06-30 10:02:51 +0200
committermakefu <github@syntax-fehler.de>2023-06-30 10:02:51 +0200
commit436f38434b2675d8b1db542b34d05d4fbe7146e6 (patch)
treef2cd1c08d55838966858112baeeb446d4244953b
parent78190a492875c40558c6a2c06a48d7f32b2ca681 (diff)
pkgs: remove override from jellyfin
-rw-r--r--3modules/snapraid.nix2
-rw-r--r--5pkgs/default.nix2
2 files changed, 1 insertions, 3 deletions
diff --git a/3modules/snapraid.nix b/3modules/snapraid.nix
index 7ffe851d2..145c9f417 100644
--- a/3modules/snapraid.nix
+++ b/3modules/snapraid.nix
@@ -4,7 +4,7 @@ with stockholm.lib;
let
# returns dirname without / , used as disk name
- dname = dir: replaceChars ["/"] [""] (head (reverseList (splitString "/" dir)));
+ dname = dir: replaceStrings ["/"] [""] (head (reverseList (splitString "/" dir)));
snapraid-conf = ''
# Disks
${concatMapStringsSep "\n" (d: "disk ${dname d} ${d}") cfg.disks}
diff --git a/5pkgs/default.nix b/5pkgs/default.nix
index eef820743..f361bc14a 100644
--- a/5pkgs/default.nix
+++ b/5pkgs/default.nix
@@ -44,8 +44,6 @@ in {
brother_ql_web = (builtins.getFlake "github:makefu/brother_ql_web?rev=a3f8625f48111da8cd6f8e562c966cdca445b82d").packages.x86_64-linux.default;
qcma = super.libsForQt5.callPackage ./custom/qcma { };
inherit (callPackage ./devpi {}) devpi-web ;
- jellyfin = unstable.jellyfin;
- jellyfin-web = unstable.jellyfin-web;
nodemcu-uploader = super.pkgs.callPackage ./nodemcu-uploader {};
liveproxy = super.pkgs.python3Packages.callPackage ./custom/liveproxy {};
mediawiki-matrix-bot = super.pkgs.python3Packages.callPackage ./custom/mediawiki-matrix-bot {};