nixpkgs/pkgs/development/tools/eask/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
726 B
Nix
Raw Normal View History

2023-08-17 19:41:05 +03:00
{ lib
, buildNpmPackage
, fetchFromGitHub
}:
buildNpmPackage rec {
pname = "eask";
2024-02-11 06:55:36 +03:00
version = "0.9.5";
2023-08-17 19:41:05 +03:00
src = fetchFromGitHub {
owner = "emacs-eask";
repo = "cli";
rev = version;
2024-02-11 06:55:36 +03:00
hash = "sha256-olVR+TTDfSnQ+eJEb5qbNq96KnRr1WYx74/nC275+gI=";
2023-08-17 19:41:05 +03:00
};
2024-02-11 06:55:36 +03:00
npmDepsHash = "sha256-LqJ6cJxrQ3uHuQqXHQ7pfhTlndqFuqoMee9CNSteCP4=";
2023-08-17 19:41:05 +03:00
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 ];
};
}