mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
exiflooter: init at 1.0.0
This commit is contained in:
parent
95eb67cecc
commit
4755ecfb31
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 New Issue
Block a user