mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 17:33:09 +00:00
29 lines
591 B
Nix
29 lines
591 B
Nix
{ lib
|
|
, buildNpmPackage
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
buildNpmPackage rec {
|
|
pname = "yo";
|
|
version = "4.3.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "yeoman";
|
|
repo = "yo";
|
|
rev = "v${version}";
|
|
hash = "sha256-vnvcg3hvAYcqS11enBEHtpTwTOy4puY5i/6zPOHCywo=";
|
|
};
|
|
|
|
npmDepsHash = "sha256-QkEPaepvI6NfEEmqnVA4Xx/tByn6goyGWVpoJNMigd8=";
|
|
|
|
dontNpmBuild = true;
|
|
|
|
meta = {
|
|
description = "CLI tool for running Yeoman generators";
|
|
homepage = "https://github.com/yeoman/yo";
|
|
license = lib.licenses.bsd2;
|
|
mainProgram = "yo";
|
|
maintainers = with lib.maintainers; [ ];
|
|
};
|
|
}
|