Merge #313310: immich-go 0.13.2 → 0.14.1
This commit is contained in:
commit
5d592b8571
@ -1,16 +1,30 @@
|
|||||||
{ lib, buildGoModule, fetchFromGitHub, nix-update-script, testers, immich-go }:
|
{ lib, buildGoModule, fetchFromGitHub, nix-update-script, testers, immich-go }:
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
pname = "immich-go";
|
pname = "immich-go";
|
||||||
version = "0.13.2";
|
version = "0.14.1";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "simulot";
|
owner = "simulot";
|
||||||
repo = "immich-go";
|
repo = "immich-go";
|
||||||
rev = "${version}";
|
rev = "${version}";
|
||||||
hash = "sha256-zYqPPLDfBx4FLvZIo5E6nAeIiFfBCLI00xLieXFkMxs=";
|
hash = "sha256-5dgEyg55ffJLH8zxp6mFVsUqAzyPnY18XnX+jMethUc=";
|
||||||
|
|
||||||
|
# Inspired by: https://github.com/NixOS/nixpkgs/blob/f2d7a289c5a5ece8521dd082b81ac7e4a57c2c5c/pkgs/applications/graphics/pdfcpu/default.nix#L20-L32
|
||||||
|
# The intention here is to write the information into files in the `src`'s
|
||||||
|
# `$out`, and use them later in other phases (in this case `preBuild`).
|
||||||
|
# In order to keep determinism, we also delete the `.git` directory
|
||||||
|
# afterwards, imitating the default behavior of `leaveDotGit = false`.
|
||||||
|
# More info about git log format can be found at `git-log(1)` manpage.
|
||||||
|
leaveDotGit = true;
|
||||||
|
postFetch = ''
|
||||||
|
cd "$out"
|
||||||
|
git log -1 --pretty=%H > "COMMIT"
|
||||||
|
git log -1 --pretty=%cd --date=format:'%Y-%m-%dT%H:%M:%SZ' > "SOURCE_DATE"
|
||||||
|
rm -rf ".git"
|
||||||
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
vendorHash = "sha256-Y5BujN2mk662oKxQpenjFlxazST2GqWr9ug0sOsxKbY=";
|
vendorHash = "sha256-nOJJz5KEXqxl3tP1Q12Cb/fugtxR67RjzH6khKg3ppE=";
|
||||||
|
|
||||||
# options used by upstream:
|
# options used by upstream:
|
||||||
# https://github.com/simulot/immich-go/blob/0.13.2/.goreleaser.yaml
|
# https://github.com/simulot/immich-go/blob/0.13.2/.goreleaser.yaml
|
||||||
@ -19,10 +33,13 @@ buildGoModule rec {
|
|||||||
"-w"
|
"-w"
|
||||||
"-extldflags=-static"
|
"-extldflags=-static"
|
||||||
"-X main.version=${version}"
|
"-X main.version=${version}"
|
||||||
"-X main.commit=${version}"
|
|
||||||
"-X main.date=unknown"
|
|
||||||
];
|
];
|
||||||
|
|
||||||
|
preBuild = ''
|
||||||
|
ldflags+=" -X main.commit=$(cat COMMIT)"
|
||||||
|
ldflags+=" -X main.date=$(cat SOURCE_DATE)"
|
||||||
|
'';
|
||||||
|
|
||||||
passthru = {
|
passthru = {
|
||||||
updateScript = nix-update-script { };
|
updateScript = nix-update-script { };
|
||||||
tests.versionTest = testers.testVersion {
|
tests.versionTest = testers.testVersion {
|
||||||
|
Loading…
Reference in New Issue
Block a user