at 23.11-beta 609 B view raw
1{ lib 2, buildNpmPackage 3, fetchFromGitHub 4}: 5 6buildNpmPackage rec { 7 pname = "web-ext"; 8 version = "7.6.2"; 9 10 src = fetchFromGitHub { 11 owner = "mozilla"; 12 repo = "web-ext"; 13 rev = version; 14 hash = "sha256-tFMngcoHFA3QmR0AK68elUVpli37PsVlcL978o7DQCs="; 15 }; 16 17 npmDepsHash = "sha256-KPBKUjCxva11w/E+Qhlx+1vikpCL7Hr9MiKenYHEVSU="; 18 19 meta = { 20 description = "A command line tool to help build, run, and test web extensions"; 21 homepage = "https://github.com/mozilla/web-ext"; 22 license = lib.licenses.mpl20; 23 mainProgram = "web-ext"; 24 maintainers = with lib.maintainers; [ ]; 25 }; 26}