forked from mirrors/nixpkgs
mystmd: 1.1.29 -> 1.1.31
Diff: https://github.com/executablebooks/mystmd/compare/mystmd@1.1.29...mystmd@1.1.31 Changelog: https://github.com/executablebooks/mystmd/blob/mystmd@1.1.31/packages/myst-cli/CHANGELOG.md
This commit is contained in:
parent
238efb9014
commit
b4b12bbb9d
|
@ -1,17 +1,17 @@
|
|||
{ lib, buildNpmPackage, fetchFromGitHub, mystmd, testers }:
|
||||
{ lib, buildNpmPackage, fetchFromGitHub, mystmd, testers, nix-update-script }:
|
||||
|
||||
buildNpmPackage rec {
|
||||
pname = "mystmd";
|
||||
version = "1.1.29";
|
||||
version = "1.1.31";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "executablebooks";
|
||||
repo = "mystmd";
|
||||
rev = "mystmd@${version}";
|
||||
hash = "sha256-vI30dAcHdVtfD3xWIEytlDaobRX7Wkc7xt8vVHdXJxY=";
|
||||
hash = "sha256-1zjz1HJxa8ww02MnqravCWM51bpuSpnLxn34Kazbt5o=";
|
||||
};
|
||||
|
||||
npmDepsHash = "sha256-l/jpNCVZe++o494W4EV86VAVdH9W8W8I0+dC2rBome8=";
|
||||
npmDepsHash = "sha256-7H3VKJAzbsKLhyFD7MoASsOyJwbt6vERO6LM2mpz/y0=";
|
||||
|
||||
dontNpmInstall = true;
|
||||
|
||||
|
@ -23,9 +23,12 @@ buildNpmPackage rec {
|
|||
runHook postInstall
|
||||
'';
|
||||
|
||||
passthru.tests.version = testers.testVersion {
|
||||
package = mystmd;
|
||||
version = "v${version}";
|
||||
passthru = {
|
||||
tests.version = testers.testVersion {
|
||||
package = mystmd;
|
||||
version = "v${version}";
|
||||
};
|
||||
updateScript = nix-update-script { };
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
|
|
Loading…
Reference in a new issue