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:
commit
6fcebe85fb
29
pkgs/by-name/ex/exiflooter/package.nix
Normal file
29
pkgs/by-name/ex/exiflooter/package.nix
Normal 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";
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue