sdrangel: fix build on x86_64-darwin
[NixPkgs.git] / pkgs / tools / misc / immich-cli / default.nix
blob82d8e96ec798a2fec01787bc386ec4c2dea0f886
1 { lib
2 , buildNpmPackage
3 , fetchFromGitHub
4 }:
6 buildNpmPackage {
7   pname = "immich-cli";
8   version = "2.0.6";
10   src = fetchFromGitHub {
11     owner = "immich-app";
12     repo = "immich";
13     # Using a fixed commit until upstream has release tags for cli.
14     rev = "014adf175ad50a61f92804666940e267ab329064";
15     hash = "sha256-MK3Watq5/Zp+rymCIfWxAXSgBPDE13g23uDnW7A5x9g=";
16   };
18   npmDepsHash = "sha256-ssxOXKE1t/bSb972w/cBeK61IrqPLmx9ODMn6D+2Ezw=";
20   postPatch = ''
21     cd cli
22   '';
24   meta = {
25     description = "CLI utilities for Immich to help upload images and videos";
26     homepage = "https://github.com/immich-app/immich";
27     license = lib.licenses.mit;
28     mainProgram = "immich";
29     maintainers = with lib.maintainers; [ felschr pineapplehunter ];
30   };