nixpkgs/pkgs/by-name/ga/galer/package.nix
2024-11-21 09:42:22 +01:00

28 lines
681 B
Nix

{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "galer";
version = "0.2.0";
src = fetchFromGitHub {
owner = "dwisiswant0";
repo = "galer";
rev = "refs/tags/v${version}";
hash = "sha256-otyvEXBiPBhWvyoJEG6Ho5HA63Lg78odMR4mc0n+xXo=";
};
vendorHash = "sha256-BS7ZUq8/swZpTaYGjiF5OuZXQpoosZ3mdF9v1euijxo=";
meta = with lib; {
description = "Tool to fetch URLs from HTML attributes";
homepage = "https://github.com/dwisiswant0/galer";
changelog = "https://github.com/dwisiswant0/galer/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
mainProgram = "galer";
};
}