mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-12 16:53:21 +00:00
30 lines
683 B
Nix
30 lines
683 B
Nix
{ lib
|
|
, buildNpmPackage
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
buildNpmPackage rec {
|
|
pname = "glob";
|
|
version = "10.3.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "isaacs";
|
|
repo = "node-glob";
|
|
rev = "v${version}";
|
|
hash = "sha256-oLlNhQOnu/hlKjNWa5vjqslz1EarZJOpUEXUB+vGQvc=";
|
|
};
|
|
|
|
npmDepsHash = "sha256-78oODw+CBCk5JRJbDqLqVmzTVImP7Z7o6jRIimDxZDQ=";
|
|
|
|
dontNpmBuild = true;
|
|
|
|
meta = {
|
|
changelog = "https://github.com/isaacs/node-glob/blob/${src.rev}/changelog.md";
|
|
description = "A little globber for Node.js";
|
|
homepage = "https://github.com/isaacs/node-glob";
|
|
license = lib.licenses.isc;
|
|
mainProgram = "glob";
|
|
maintainers = with lib.maintainers; [ ];
|
|
};
|
|
}
|