mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-30 19:02:57 +00:00
5356420466
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \ -e 's!with lib.maintainers; \[ *\];![ ];!' \ -e 's!with maintainers; \[ *\];![ ];!'
30 lines
659 B
Nix
30 lines
659 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 = "Little globber for Node.js";
|
|
homepage = "https://github.com/isaacs/node-glob";
|
|
license = lib.licenses.isc;
|
|
mainProgram = "glob";
|
|
maintainers = [ ];
|
|
};
|
|
}
|