39 lines
884 B
Nix
39 lines
884 B
Nix
|
{ lib, buildGoModule, coreutils, libtensorflow, src, version, ... }:
|
||
|
|
||
|
buildGoModule rec {
|
||
|
inherit src version;
|
||
|
pname = "photoprism-backend";
|
||
|
|
||
|
buildInputs = [
|
||
|
coreutils
|
||
|
libtensorflow
|
||
|
];
|
||
|
|
||
|
ldflags = [
|
||
|
"-s"
|
||
|
"-w"
|
||
|
"-X main.version=${version}"
|
||
|
];
|
||
|
|
||
|
postPatch = ''
|
||
|
substituteInPlace internal/commands/passwd.go --replace '/bin/stty' "${coreutils}/bin/stty"
|
||
|
'';
|
||
|
|
||
|
vendorSha256 = "sha256-x1WfBxjGg4HKnzN0xEY43hgwdS6yf1AFo3GlW8e7nrM=";
|
||
|
|
||
|
subPackages = [ "cmd/photoprism" ];
|
||
|
|
||
|
# https://github.com/mattn/go-sqlite3/issues/822
|
||
|
CGO_CFLAGS = "-Wno-return-local-addr";
|
||
|
|
||
|
# https://github.com/tensorflow/tensorflow/issues/43847
|
||
|
CGO_LDFLAGS = "-fuse-ld=gold";
|
||
|
|
||
|
meta = with lib; {
|
||
|
homepage = "https://photoprism.app";
|
||
|
description = "Photoprism's backend";
|
||
|
license = licenses.agpl3Only;
|
||
|
maintainers = with maintainers; [ benesim ];
|
||
|
};
|
||
|
}
|