mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 12:23:02 +00:00
34 lines
768 B
Nix
34 lines
768 B
Nix
{
|
|
lib,
|
|
buildNpmPackage,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
buildNpmPackage rec {
|
|
pname = "eask-cli";
|
|
version = "0.10.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "emacs-eask";
|
|
repo = "cli";
|
|
rev = version;
|
|
hash = "sha256-FgmeAsqbnlw7yOMslAJnZWuG3nDDjcXlS2pI3X9x1PA=";
|
|
};
|
|
|
|
npmDepsHash = "sha256-IgL58W4j3xbtVpGz316DpnYPyZD5dmDvg7Z1Irr3jig=";
|
|
|
|
dontBuild = true;
|
|
|
|
meta = {
|
|
changelog = "https://github.com/emacs-eask/cli/blob/${src.rev}/CHANGELOG.md";
|
|
description = "CLI for building, runing, testing, and managing your Emacs Lisp dependencies";
|
|
homepage = "https://emacs-eask.github.io/";
|
|
license = lib.licenses.gpl3Plus;
|
|
mainProgram = "eask";
|
|
maintainers = with lib.maintainers; [
|
|
jcs090218
|
|
piotrkwiecinski
|
|
];
|
|
};
|
|
}
|