at 23.11-beta 29 lines 683 B view raw
1{ lib 2, buildNpmPackage 3, fetchFromGitHub 4}: 5 6buildNpmPackage rec { 7 pname = "glob"; 8 version = "10.3.3"; 9 10 src = fetchFromGitHub { 11 owner = "isaacs"; 12 repo = "node-glob"; 13 rev = "v${version}"; 14 hash = "sha256-oLlNhQOnu/hlKjNWa5vjqslz1EarZJOpUEXUB+vGQvc="; 15 }; 16 17 npmDepsHash = "sha256-78oODw+CBCk5JRJbDqLqVmzTVImP7Z7o6jRIimDxZDQ="; 18 19 dontNpmBuild = true; 20 21 meta = { 22 changelog = "https://github.com/isaacs/node-glob/blob/${src.rev}/changelog.md"; 23 description = "A little globber for Node.js"; 24 homepage = "https://github.com/isaacs/node-glob"; 25 license = lib.licenses.isc; 26 mainProgram = "glob"; 27 maintainers = with lib.maintainers; [ ]; 28 }; 29}