This commit is contained in:
2025-08-06 19:56:59 +03:00
parent f33bb778be
commit 1596220c91
4 changed files with 0 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
# self: super: {
# pkgs-src = {
# immich = super.callPackage ./package.nix { };
# };
# }
{ pkgs }:
let
sources = pkgs.lib.importJSON ./sources.json;
in {
package = pkgs.callPackage ./package.nix {
# src = pkgs.fetchFromGitHub {
# owner = "immich-app";
# repo = "immich";
# rev = "v${sources.version}";
# hash = sources.hash;
# };
};
}