mirror of
https://github.com/oqyude/nixos.git
synced 2026-06-10 20:20:41 +03:00
21 lines
382 B
Nix
21 lines
382 B
Nix
# 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;
|
|
# };
|
|
};
|
|
}
|