1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-18 03:30:45 +00:00

Merge pull request #279366 from octodi/exiflooter

exiflooter: init at 1.0.0
This commit is contained in:
Fabian Affolter 2024-01-14 10:50:52 +01:00 committed by GitHub
commit 6fcebe85fb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,29 @@
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "exiflooter";
version = "1.0.0";
src = fetchFromGitHub {
owner = "aydinnyunus";
repo = "exiflooter";
rev = "v${version}";
hash = "sha256-E7fxV+w8N9xi8UuaKBTZBzPjIHJt9/U+oVIu2+Ond+Y=";
};
vendorHash = "sha256-uV7O2H3gPQ+kFdEHLgM+v+TXn+87QfFwOAEQpnKQIQk=";
ldflags = [ "-s" "-w" ];
meta = with lib; {
description = "Finds geolocation on all image urls and directories";
homepage = "https://github.com/aydinnyunus/exiflooter";
changelog = "https://github.com/aydinnyunus/exifLooter/releases/tag/v${version}";
license = licenses.asl20;
maintainers = with maintainers; [ octodi ];
mainProgram = "exiflooter";
};
}