matrix-appservice-discord: use python3
This commit is contained in:
parent
53d4f53a14
commit
c8dc922788
1 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
||||||
{ lib, mkYarnPackage, fetchFromGitHub, runCommand, makeWrapper, python, nodejs }:
|
{ lib, mkYarnPackage, fetchFromGitHub, runCommand, makeWrapper, python3, nodejs }:
|
||||||
|
|
||||||
assert lib.versionAtLeast nodejs.version "12.0.0";
|
assert lib.versionAtLeast nodejs.version "12.0.0";
|
||||||
|
|
||||||
|
@ -26,7 +26,7 @@ in mkYarnPackage rec {
|
||||||
|
|
||||||
pkgConfig = {
|
pkgConfig = {
|
||||||
better-sqlite3 = {
|
better-sqlite3 = {
|
||||||
buildInputs = [ python ];
|
buildInputs = [ python3 ];
|
||||||
postInstall = ''
|
postInstall = ''
|
||||||
# build native sqlite bindings
|
# build native sqlite bindings
|
||||||
npm run build-release --offline --nodedir="${nodeSources}"
|
npm run build-release --offline --nodedir="${nodeSources}"
|
||||||
|
|
Loading…
Reference in a new issue