mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-17 10:24:07 +00:00
28 lines
681 B
Nix
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";
|
|
};
|
|
}
|