Merge pull request #97463 from WilliButz/codimd/fix-sqlite/node12
codimd: build with nodejs-12_x instead of nodejs-10_x
This commit is contained in:
commit
1b344f2695
|
@ -1,5 +1,5 @@
|
||||||
{ stdenv, fetchFromGitHub, fetchpatch, makeWrapper
|
{ stdenv, fetchFromGitHub, fetchpatch, makeWrapper
|
||||||
, which, nodejs, mkYarnPackage, python2 }:
|
, which, nodejs, mkYarnPackage, python2, nixosTests }:
|
||||||
|
|
||||||
mkYarnPackage rec {
|
mkYarnPackage rec {
|
||||||
name = "codimd";
|
name = "codimd";
|
||||||
|
@ -63,6 +63,8 @@ mkYarnPackage rec {
|
||||||
runHook postDist
|
runHook postDist
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
passthru.tests = { inherit (nixosTests) codimd; };
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Realtime collaborative markdown notes on all platforms";
|
description = "Realtime collaborative markdown notes on all platforms";
|
||||||
license = licenses.agpl3;
|
license = licenses.agpl3;
|
||||||
|
|
|
@ -2706,7 +2706,7 @@ in
|
||||||
cmt = callPackage ../applications/audio/cmt {};
|
cmt = callPackage ../applications/audio/cmt {};
|
||||||
|
|
||||||
codimd = callPackage ../servers/web-apps/codimd {
|
codimd = callPackage ../servers/web-apps/codimd {
|
||||||
nodejs = nodejs-10_x;
|
nodejs = nodejs-12_x;
|
||||||
};
|
};
|
||||||
|
|
||||||
colord = callPackage ../tools/misc/colord { };
|
colord = callPackage ../tools/misc/colord { };
|
||||||
|
|
Loading…
Reference in New Issue