mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 01:43:15 +00:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
30 lines
681 B
Nix
30 lines
681 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 = with lib.maintainers; [ ];
|
|
};
|
|
}
|