lol

galer: 0.0.2 -> 0.1.0 (#346872)

authored by

Fabian Affolter and committed by
GitHub
cd5bb9cf c072d363

+7 -7
+7 -7
pkgs/tools/security/galer/default.nix
··· 5 6 buildGoModule rec { 7 pname = "galer"; 8 - version = "0.0.2"; 9 10 src = fetchFromGitHub { 11 owner = "dwisiswant0"; 12 - repo = pname; 13 - rev = "v${version}"; 14 - hash = "sha256-i3rrXpKnUV9REnn4lQWIFpWc2SzkxVomruiAmcMBQ6Q="; 15 }; 16 17 - vendorHash = "sha256-2nJgQfSeo9GrK6Kor29esnMEFmd5pTd8lGwzRi4zq1w="; 18 19 meta = with lib; { 20 description = "Tool to fetch URLs from HTML attributes"; 21 - mainProgram = "galer"; 22 homepage = "https://github.com/dwisiswant0/galer"; 23 - license = with licenses; [ mit ]; 24 maintainers = with maintainers; [ fab ]; 25 }; 26 }
··· 5 6 buildGoModule rec { 7 pname = "galer"; 8 + version = "0.1.0"; 9 10 src = fetchFromGitHub { 11 owner = "dwisiswant0"; 12 + repo = "galer"; 13 + rev = "refs/tags/v${version}"; 14 + hash = "sha256-/VvN6LjK+V8E9XYarRUI/TPGitMM0a3g1lfdYhV1yP8="; 15 }; 16 17 + vendorHash = "sha256-WDOwUjU6AP/8QvqiKTEY6wsMBZQFWn/LGWr8nfqDF+8="; 18 19 meta = with lib; { 20 description = "Tool to fetch URLs from HTML attributes"; 21 homepage = "https://github.com/dwisiswant0/galer"; 22 + license = licenses.mit; 23 maintainers = with maintainers; [ fab ]; 24 + mainProgram = "galer"; 25 }; 26 }