2022-01-11 03:29:04 +01:00
|
|
|
{ pkgs, nodejs, stdenv, applyPatches, fetchFromGitHub, fetchpatch, fetchurl, nixosTests }:
|
2020-05-29 18:22:23 +02:00
|
|
|
|
|
|
|
let
|
2021-10-15 01:27:03 +02:00
|
|
|
inherit (pkgs) lib;
|
2022-01-18 00:25:53 +01:00
|
|
|
since = version: pkgs.lib.versionAtLeast nodejs.version version;
|
|
|
|
before = version: pkgs.lib.versionOlder nodejs.version version;
|
2020-05-30 13:30:38 +02:00
|
|
|
super = import ./composition.nix {
|
2020-05-29 18:22:23 +02:00
|
|
|
inherit pkgs nodejs;
|
|
|
|
inherit (stdenv.hostPlatform) system;
|
|
|
|
};
|
2020-05-30 13:30:38 +02:00
|
|
|
self = super // {
|
|
|
|
"@angular/cli" = super."@angular/cli".override {
|
|
|
|
prePatch = ''
|
|
|
|
export NG_CLI_ANALYTICS=false
|
|
|
|
'';
|
|
|
|
};
|
2021-04-14 23:08:31 +02:00
|
|
|
|
2021-07-18 12:03:10 +02:00
|
|
|
autoprefixer = super.autoprefixer.override {
|
|
|
|
nativeBuildInputs = [ pkgs.makeWrapper ];
|
|
|
|
postInstall = ''
|
|
|
|
wrapProgram "$out/bin/autoprefixer" \
|
|
|
|
--prefix NODE_PATH : ${self.postcss}/lib/node_modules
|
|
|
|
'';
|
|
|
|
passthru.tests = {
|
|
|
|
simple-execution = pkgs.callPackage ./package-tests/autoprefixer.nix { inherit (self) autoprefixer; };
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2021-04-14 23:08:31 +02:00
|
|
|
aws-azure-login = super.aws-azure-login.override {
|
|
|
|
meta.platforms = pkgs.lib.platforms.linux;
|
|
|
|
nativeBuildInputs = [ pkgs.makeWrapper ];
|
|
|
|
prePatch = ''
|
|
|
|
export PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=1
|
|
|
|
'';
|
|
|
|
postInstall = ''
|
|
|
|
wrapProgram $out/bin/aws-azure-login \
|
|
|
|
--set PUPPETEER_EXECUTABLE_PATH ${pkgs.chromium}/bin/chromium
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2020-05-30 13:30:38 +02:00
|
|
|
bower2nix = super.bower2nix.override {
|
|
|
|
buildInputs = [ pkgs.makeWrapper ];
|
|
|
|
postInstall = ''
|
|
|
|
for prog in bower2nix fetch-bower; do
|
2021-01-27 10:38:10 +01:00
|
|
|
wrapProgram "$out/bin/$prog" --prefix PATH : ${pkgs.lib.makeBinPath [ pkgs.git pkgs.nix ]}
|
2020-05-30 13:30:38 +02:00
|
|
|
done
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2022-01-18 00:25:53 +01:00
|
|
|
carbon-now-cli = super.carbon-now-cli.override {
|
2021-09-23 14:00:36 +02:00
|
|
|
nativeBuildInputs = [ pkgs.makeWrapper ];
|
|
|
|
prePatch = ''
|
|
|
|
export PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=1
|
|
|
|
'';
|
|
|
|
postInstall = ''
|
|
|
|
wrapProgram $out/bin/carbon-now \
|
|
|
|
--set PUPPETEER_EXECUTABLE_PATH ${pkgs.chromium.outPath}/bin/chromium
|
|
|
|
'';
|
2022-01-18 00:25:53 +01:00
|
|
|
};
|
2021-09-23 14:00:36 +02:00
|
|
|
|
2021-07-18 16:41:04 +02:00
|
|
|
deltachat-desktop = super."deltachat-desktop-../../applications/networking/instant-messengers/deltachat-desktop".override {
|
|
|
|
meta.broken = true; # use the top-level package instead
|
|
|
|
};
|
|
|
|
|
2022-01-18 00:25:53 +01:00
|
|
|
fast-cli = super.fast-cli.override {
|
2021-07-20 18:29:52 +02:00
|
|
|
nativeBuildInputs = [ pkgs.makeWrapper ];
|
|
|
|
prePatch = ''
|
|
|
|
export PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=1
|
|
|
|
'';
|
|
|
|
postInstall = ''
|
|
|
|
wrapProgram $out/bin/fast \
|
|
|
|
--set PUPPETEER_EXECUTABLE_PATH ${pkgs.chromium.outPath}/bin/chromium
|
|
|
|
'';
|
2022-01-18 00:25:53 +01:00
|
|
|
};
|
2021-07-20 18:29:52 +02:00
|
|
|
|
2021-07-15 20:04:51 +02:00
|
|
|
hyperspace-cli = super."@hyperspace/cli".override {
|
|
|
|
nativeBuildInputs = with pkgs; [
|
|
|
|
makeWrapper
|
|
|
|
libtool
|
|
|
|
autoconf
|
|
|
|
automake
|
|
|
|
];
|
|
|
|
buildInputs = with pkgs; [
|
|
|
|
nodePackages.node-gyp-build
|
|
|
|
nodejs
|
|
|
|
];
|
|
|
|
postInstall = ''
|
|
|
|
wrapProgram "$out/bin/hyp" --prefix PATH : ${
|
|
|
|
pkgs.lib.makeBinPath [ pkgs.nodejs ]
|
|
|
|
}
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2021-10-18 18:25:06 +02:00
|
|
|
mdctl-cli = super."@medable/mdctl-cli".override {
|
|
|
|
nativeBuildInputs = with pkgs; with darwin.apple_sdk.frameworks; [
|
|
|
|
glib
|
|
|
|
libsecret
|
|
|
|
pkg-config
|
|
|
|
] ++ lib.optionals stdenv.isDarwin [
|
|
|
|
AppKit
|
|
|
|
Security
|
|
|
|
];
|
|
|
|
buildInputs = with pkgs; [
|
|
|
|
nodePackages.node-gyp-build
|
|
|
|
nodePackages.node-pre-gyp
|
|
|
|
nodejs
|
|
|
|
];
|
|
|
|
};
|
|
|
|
|
2020-05-30 13:30:38 +02:00
|
|
|
coc-imselect = super.coc-imselect.override {
|
|
|
|
meta.broken = since "10";
|
|
|
|
};
|
|
|
|
|
|
|
|
dat = super.dat.override {
|
|
|
|
buildInputs = [ self.node-gyp-build pkgs.libtool pkgs.autoconf pkgs.automake ];
|
|
|
|
meta.broken = since "12";
|
|
|
|
};
|
|
|
|
|
2018-10-20 20:14:34 +02:00
|
|
|
# NOTE: this is a stub package to fetch npm dependencies for
|
|
|
|
# ../../applications/video/epgstation
|
|
|
|
epgstation = super."epgstation-../../applications/video/epgstation".override (drv: {
|
2022-05-13 17:17:11 +02:00
|
|
|
buildInputs = [ self.node-pre-gyp self.node-gyp-build ];
|
2018-10-20 20:14:34 +02:00
|
|
|
meta = drv.meta // {
|
2022-01-29 13:21:54 +01:00
|
|
|
platforms = pkgs.lib.platforms.none;
|
|
|
|
};
|
|
|
|
});
|
|
|
|
|
|
|
|
# NOTE: this is a stub package to fetch npm dependencies for
|
|
|
|
# ../../applications/video/epgstation/client
|
|
|
|
epgstation-client = super."epgstation-client-../../applications/video/epgstation/client".override (drv: {
|
|
|
|
meta = drv.meta // {
|
|
|
|
platforms = pkgs.lib.platforms.none;
|
2018-10-20 20:14:34 +02:00
|
|
|
};
|
|
|
|
});
|
|
|
|
|
2021-05-12 22:09:37 +02:00
|
|
|
bitwarden-cli = super."@bitwarden/cli".override (drv: {
|
2020-05-30 13:30:38 +02:00
|
|
|
name = "bitwarden-cli-${drv.version}";
|
2021-05-12 22:09:37 +02:00
|
|
|
meta.mainProgram = "bw";
|
2020-05-30 13:30:38 +02:00
|
|
|
});
|
|
|
|
|
2020-11-24 04:34:07 +01:00
|
|
|
flood = super.flood.override {
|
|
|
|
buildInputs = [ self.node-pre-gyp ];
|
2021-05-22 19:36:10 +02:00
|
|
|
meta.mainProgram = "flood";
|
2020-11-24 04:34:07 +01:00
|
|
|
};
|
|
|
|
|
2020-10-08 09:43:53 +02:00
|
|
|
expo-cli = super."expo-cli".override (attrs: {
|
2020-08-27 23:42:58 +02:00
|
|
|
# The traveling-fastlane-darwin optional dependency aborts build on Linux.
|
|
|
|
dependencies = builtins.filter (d: d.packageName != "@expo/traveling-fastlane-${if stdenv.isLinux then "darwin" else "linux"}") attrs.dependencies;
|
|
|
|
});
|
|
|
|
|
2021-03-06 07:02:31 +01:00
|
|
|
"@electron-forge/cli" = super."@electron-forge/cli".override {
|
|
|
|
buildInputs = [ self.node-pre-gyp self.rimraf ];
|
|
|
|
};
|
|
|
|
|
2020-05-30 13:30:38 +02:00
|
|
|
git-ssb = super.git-ssb.override {
|
|
|
|
buildInputs = [ self.node-gyp-build ];
|
|
|
|
meta.broken = since "10";
|
|
|
|
};
|
|
|
|
|
2020-09-27 23:02:30 +02:00
|
|
|
hsd = super.hsd.override {
|
|
|
|
buildInputs = [ self.node-gyp-build pkgs.unbound ];
|
|
|
|
};
|
|
|
|
|
2021-01-02 17:50:34 +01:00
|
|
|
ijavascript = super.ijavascript.override (oldAttrs: {
|
|
|
|
preRebuild = ''
|
|
|
|
export NPM_CONFIG_ZMQ_EXTERNAL=true
|
|
|
|
'';
|
|
|
|
buildInputs = oldAttrs.buildInputs ++ [ self.node-gyp-build pkgs.zeromq ];
|
|
|
|
});
|
|
|
|
|
2020-05-30 13:30:38 +02:00
|
|
|
insect = super.insect.override (drv: {
|
2020-05-30 20:53:09 +02:00
|
|
|
nativeBuildInputs = drv.nativeBuildInputs or [] ++ [ pkgs.psc-package self.pulp ];
|
2020-05-30 13:30:38 +02:00
|
|
|
});
|
|
|
|
|
2021-10-29 01:51:33 +02:00
|
|
|
intelephense = super.intelephense.override {
|
|
|
|
meta.license = pkgs.lib.licenses.unfree;
|
|
|
|
};
|
|
|
|
|
2021-06-30 19:30:50 +02:00
|
|
|
jsonplaceholder = super.jsonplaceholder.override (drv: {
|
|
|
|
buildInputs = [ nodejs ];
|
|
|
|
postInstall = ''
|
|
|
|
exe=$out/bin/jsonplaceholder
|
|
|
|
mkdir -p $out/bin
|
|
|
|
cat >$exe <<EOF
|
|
|
|
#!${pkgs.runtimeShell}
|
|
|
|
exec -a jsonplaceholder ${nodejs}/bin/node $out/lib/node_modules/jsonplaceholder/index.js
|
|
|
|
EOF
|
|
|
|
chmod a+x $exe
|
|
|
|
'';
|
|
|
|
});
|
|
|
|
|
2020-10-15 16:10:18 +02:00
|
|
|
makam = super.makam.override {
|
|
|
|
buildInputs = [ pkgs.nodejs pkgs.makeWrapper ];
|
|
|
|
postFixup = ''
|
2021-01-27 10:38:10 +01:00
|
|
|
wrapProgram "$out/bin/makam" --prefix PATH : ${pkgs.lib.makeBinPath [ pkgs.nodejs ]}
|
2020-10-15 16:10:18 +02:00
|
|
|
${
|
|
|
|
if stdenv.isLinux
|
|
|
|
then "patchelf --set-interpreter ${stdenv.glibc}/lib/ld-linux-x86-64.so.2 \"$out/lib/node_modules/makam/makam-bin-linux64\""
|
|
|
|
else ""
|
|
|
|
}
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2022-01-20 19:08:46 +01:00
|
|
|
manta = super.manta.override {
|
2022-02-09 17:03:53 +01:00
|
|
|
nativeBuildInputs = with pkgs; [ nodejs-14_x installShellFiles ];
|
2022-01-20 19:08:46 +01:00
|
|
|
postInstall = ''
|
|
|
|
# create completions, following upstream procedure https://github.com/joyent/node-manta/blob/v5.2.3/Makefile#L85-L91
|
|
|
|
completion_cmds=$(find ./bin -type f -printf "%f\n")
|
|
|
|
|
|
|
|
node ./lib/create_client.js
|
|
|
|
for cmd in $completion_cmds; do
|
|
|
|
installShellCompletion --cmd $cmd --bash <(./bin/$cmd --completion)
|
|
|
|
done
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2021-05-28 23:21:50 +02:00
|
|
|
markdownlint-cli = super.markdownlint-cli.override {
|
|
|
|
meta.mainProgram = "markdownlint";
|
|
|
|
};
|
|
|
|
|
2021-08-10 07:39:02 +02:00
|
|
|
node-gyp = super.node-gyp.override {
|
|
|
|
nativeBuildInputs = [ pkgs.makeWrapper ];
|
|
|
|
# Teach node-gyp to use nodejs headers locally rather that download them form https://nodejs.org.
|
|
|
|
# This is important when build nodejs packages in sandbox.
|
|
|
|
postInstall = ''
|
|
|
|
wrapProgram "$out/bin/node-gyp" \
|
|
|
|
--set npm_config_nodedir ${nodejs}
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2022-02-08 15:01:44 +01:00
|
|
|
near-cli = super.near-cli.override {
|
|
|
|
nativeBuildInputs = with pkgs; [
|
2022-03-11 15:07:20 +01:00
|
|
|
libusb1
|
2022-02-08 15:01:44 +01:00
|
|
|
nodePackages.prebuild-install
|
|
|
|
nodePackages.node-gyp-build
|
|
|
|
pkg-config
|
|
|
|
];
|
|
|
|
};
|
|
|
|
|
2020-05-30 13:30:38 +02:00
|
|
|
node-inspector = super.node-inspector.override {
|
|
|
|
buildInputs = [ self.node-pre-gyp ];
|
|
|
|
meta.broken = since "10";
|
|
|
|
};
|
|
|
|
|
|
|
|
node2nix = super.node2nix.override {
|
|
|
|
buildInputs = [ pkgs.makeWrapper ];
|
2022-05-02 06:46:16 +02:00
|
|
|
# We need to use master because of a fix that replaces git:// url to https://.
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "svanderburg";
|
|
|
|
repo = "node2nix";
|
|
|
|
rev = "68f5735f9a56737e3fedceb182705985e3ab8799";
|
|
|
|
sha256 = "sha256-NK6gDTkGx0GG7yPTwgtFC4ttQZPfcLaLp8W8OOMO6bg=";
|
2021-07-09 00:42:03 +02:00
|
|
|
};
|
2022-05-02 06:46:16 +02:00
|
|
|
|
2020-05-30 13:30:38 +02:00
|
|
|
postInstall = ''
|
2021-01-27 10:38:10 +01:00
|
|
|
wrapProgram "$out/bin/node2nix" --prefix PATH : ${pkgs.lib.makeBinPath [ pkgs.nix ]}
|
2020-05-30 13:30:38 +02:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
node-red = super.node-red.override {
|
2020-08-27 18:13:35 +02:00
|
|
|
buildInputs = [ self.node-pre-gyp ];
|
2020-05-30 13:30:38 +02:00
|
|
|
};
|
|
|
|
|
2020-05-13 22:10:22 +02:00
|
|
|
mermaid-cli = super."@mermaid-js/mermaid-cli".override (
|
|
|
|
if stdenv.isDarwin
|
|
|
|
then {}
|
|
|
|
else {
|
|
|
|
nativeBuildInputs = [ pkgs.makeWrapper ];
|
|
|
|
prePatch = ''
|
|
|
|
export PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=1
|
|
|
|
'';
|
|
|
|
postInstall = ''
|
|
|
|
wrapProgram $out/bin/mmdc \
|
|
|
|
--set PUPPETEER_EXECUTABLE_PATH ${pkgs.chromium.outPath}/bin/chromium
|
|
|
|
'';
|
|
|
|
});
|
|
|
|
|
2020-05-30 13:30:38 +02:00
|
|
|
pnpm = super.pnpm.override {
|
|
|
|
nativeBuildInputs = [ pkgs.makeWrapper ];
|
|
|
|
|
|
|
|
preRebuild = ''
|
|
|
|
sed 's/"link:/"file:/g' --in-place package.json
|
|
|
|
'';
|
|
|
|
|
|
|
|
postInstall = let
|
2021-01-27 10:38:10 +01:00
|
|
|
pnpmLibPath = pkgs.lib.makeBinPath [
|
2020-05-30 13:30:38 +02:00
|
|
|
nodejs.passthru.python
|
|
|
|
nodejs
|
|
|
|
];
|
|
|
|
in ''
|
|
|
|
for prog in $out/bin/*; do
|
|
|
|
wrapProgram "$prog" --prefix PATH : ${pnpmLibPath}
|
|
|
|
done
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2022-03-03 10:14:08 +01:00
|
|
|
parcel = super.parcel.override {
|
|
|
|
buildInputs = [ self.node-gyp-build ];
|
|
|
|
preRebuild = ''
|
|
|
|
sed -i -e "s|#!/usr/bin/env node|#! ${pkgs.nodejs}/bin/node|" node_modules/node-gyp-build/bin.js
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2021-07-12 13:49:12 +02:00
|
|
|
postcss-cli = super.postcss-cli.override {
|
|
|
|
nativeBuildInputs = [ pkgs.makeWrapper ];
|
|
|
|
postInstall = ''
|
|
|
|
wrapProgram "$out/bin/postcss" \
|
2021-07-18 12:03:10 +02:00
|
|
|
--prefix NODE_PATH : ${self.postcss}/lib/node_modules \
|
|
|
|
--prefix NODE_PATH : ${self.autoprefixer}/lib/node_modules
|
2022-04-01 12:19:25 +02:00
|
|
|
ln -s '${self.postcss}/lib/node_modules/postcss' "$out/lib/node_modules/postcss"
|
2021-07-12 13:49:12 +02:00
|
|
|
'';
|
2021-07-14 18:04:05 +02:00
|
|
|
passthru.tests = {
|
|
|
|
simple-execution = pkgs.callPackage ./package-tests/postcss-cli.nix {
|
|
|
|
inherit (self) postcss-cli;
|
|
|
|
};
|
|
|
|
};
|
2022-04-01 12:06:15 +02:00
|
|
|
meta = {
|
|
|
|
mainProgram = "postcss";
|
|
|
|
maintainers = with lib.maintainers; [ Luflosi ];
|
|
|
|
};
|
2021-07-12 13:49:12 +02:00
|
|
|
};
|
|
|
|
|
2022-04-05 17:41:49 +02:00
|
|
|
# To update prisma, please first update prisma-engines to the latest
|
|
|
|
# version. Then change the correct hash to this package. The PR should hold
|
|
|
|
# two commits: one for the engines and the other one for the node package.
|
2021-11-02 19:00:17 +01:00
|
|
|
prisma = super.prisma.override rec {
|
2021-08-27 17:45:33 +02:00
|
|
|
nativeBuildInputs = [ pkgs.makeWrapper ];
|
2021-11-30 16:32:47 +01:00
|
|
|
|
|
|
|
inherit (pkgs.prisma-engines) version;
|
|
|
|
|
2021-09-25 13:30:22 +02:00
|
|
|
src = fetchurl {
|
2021-11-02 19:00:17 +01:00
|
|
|
url = "https://registry.npmjs.org/prisma/-/prisma-${version}.tgz";
|
2022-05-10 16:12:33 +02:00
|
|
|
sha512 = "sha512-l9MOgNCn/paDE+i1K2fp9NZ+Du4trzPTJsGkaQHVBufTGqzoYHuNk8JfzXuIn0Gte6/ZjyKj652Jq/Lc1tp2yw==";
|
2021-09-25 13:30:22 +02:00
|
|
|
};
|
2021-08-27 17:45:33 +02:00
|
|
|
postInstall = with pkgs; ''
|
|
|
|
wrapProgram "$out/bin/prisma" \
|
2021-09-10 16:37:56 +02:00
|
|
|
--set PRISMA_MIGRATION_ENGINE_BINARY ${prisma-engines}/bin/migration-engine \
|
|
|
|
--set PRISMA_QUERY_ENGINE_BINARY ${prisma-engines}/bin/query-engine \
|
|
|
|
--set PRISMA_QUERY_ENGINE_LIBRARY ${lib.getLib prisma-engines}/lib/libquery_engine.node \
|
|
|
|
--set PRISMA_INTROSPECTION_ENGINE_BINARY ${prisma-engines}/bin/introspection-engine \
|
|
|
|
--set PRISMA_FMT_BINARY ${prisma-engines}/bin/prisma-fmt
|
2021-08-27 17:45:33 +02:00
|
|
|
'';
|
2022-05-11 14:21:27 +02:00
|
|
|
|
|
|
|
passthru.tests = {
|
|
|
|
simple-execution = pkgs.callPackage ./package-tests/prisma.nix {
|
|
|
|
inherit (self) prisma;
|
|
|
|
};
|
|
|
|
};
|
2021-08-27 17:45:33 +02:00
|
|
|
};
|
|
|
|
|
2020-05-30 13:30:38 +02:00
|
|
|
pulp = super.pulp.override {
|
|
|
|
# tries to install purescript
|
|
|
|
npmFlags = "--ignore-scripts";
|
2020-05-30 20:53:09 +02:00
|
|
|
|
|
|
|
nativeBuildInputs = [ pkgs.makeWrapper ];
|
|
|
|
postInstall = ''
|
2021-01-27 10:38:10 +01:00
|
|
|
wrapProgram "$out/bin/pulp" --suffix PATH : ${pkgs.lib.makeBinPath [
|
2020-05-30 20:53:09 +02:00
|
|
|
pkgs.purescript
|
|
|
|
]}
|
|
|
|
'';
|
2020-05-30 13:30:38 +02:00
|
|
|
};
|
|
|
|
|
2021-11-06 20:01:58 +01:00
|
|
|
reveal-md = super.reveal-md.override (
|
|
|
|
lib.optionalAttrs (!stdenv.isDarwin) {
|
|
|
|
nativeBuildInputs = [ pkgs.makeWrapper ];
|
|
|
|
prePatch = ''
|
|
|
|
export PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=1
|
|
|
|
'';
|
|
|
|
postInstall = ''
|
|
|
|
wrapProgram $out/bin/reveal-md \
|
|
|
|
--set PUPPETEER_EXECUTABLE_PATH ${pkgs.chromium.outPath}/bin/chromium
|
|
|
|
'';
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
2020-05-30 13:30:38 +02:00
|
|
|
ssb-server = super.ssb-server.override {
|
|
|
|
buildInputs = [ pkgs.automake pkgs.autoconf self.node-gyp-build ];
|
|
|
|
meta.broken = since "10";
|
|
|
|
};
|
|
|
|
|
2020-05-30 19:21:13 +02:00
|
|
|
stf = super.stf.override {
|
|
|
|
meta.broken = since "10";
|
|
|
|
};
|
|
|
|
|
2022-02-12 10:35:35 +01:00
|
|
|
tailwindcss = super.tailwindcss.overrideAttrs (oldAttrs: {
|
|
|
|
plugins = [ ];
|
2022-01-18 00:25:53 +01:00
|
|
|
nativeBuildInputs = [ pkgs.makeWrapper ];
|
|
|
|
postInstall = ''
|
2022-02-12 10:35:35 +01:00
|
|
|
nodePath=""
|
|
|
|
for p in "$out" "${self.postcss}" $plugins; do
|
|
|
|
nodePath="$nodePath''${nodePath:+:}$p/lib/node_modules"
|
|
|
|
done
|
2022-01-18 00:25:53 +01:00
|
|
|
wrapProgram "$out/bin/tailwind" \
|
2022-02-12 10:35:35 +01:00
|
|
|
--prefix NODE_PATH : "$nodePath"
|
2022-01-18 00:25:53 +01:00
|
|
|
wrapProgram "$out/bin/tailwindcss" \
|
2022-02-12 10:35:35 +01:00
|
|
|
--prefix NODE_PATH : "$nodePath"
|
|
|
|
unset nodePath
|
2022-01-18 00:25:53 +01:00
|
|
|
'';
|
|
|
|
passthru.tests = {
|
|
|
|
simple-execution = pkgs.callPackage ./package-tests/tailwindcss.nix { inherit (self) tailwindcss; };
|
|
|
|
};
|
2022-02-12 10:35:35 +01:00
|
|
|
});
|
2022-01-18 00:25:53 +01:00
|
|
|
|
2020-05-30 13:30:38 +02:00
|
|
|
tedicross = super."tedicross-git+https://github.com/TediCross/TediCross.git#v0.8.7".override {
|
|
|
|
nativeBuildInputs = [ pkgs.makeWrapper ];
|
|
|
|
postInstall = ''
|
|
|
|
makeWrapper '${nodejs}/bin/node' "$out/bin/tedicross" \
|
|
|
|
--add-flags "$out/lib/node_modules/tedicross/main.js"
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2022-02-21 16:11:10 +01:00
|
|
|
thelounge-plugin-closepms = super.thelounge-plugin-closepms.override {
|
|
|
|
nativeBuildInputs = [ self.node-pre-gyp ];
|
|
|
|
};
|
|
|
|
|
|
|
|
thelounge-theme-flat-blue = super.thelounge-theme-flat-blue.override {
|
|
|
|
nativeBuildInputs = [ self.node-pre-gyp ];
|
|
|
|
};
|
|
|
|
|
|
|
|
thelounge-theme-flat-dark = super.thelounge-theme-flat-dark.override {
|
|
|
|
nativeBuildInputs = [ self.node-pre-gyp ];
|
|
|
|
};
|
|
|
|
|
2020-05-31 18:18:15 +02:00
|
|
|
tsun = super.tsun.overrideAttrs (oldAttrs: {
|
|
|
|
buildInputs = oldAttrs.buildInputs ++ [ pkgs.makeWrapper ];
|
|
|
|
postInstall = ''
|
|
|
|
wrapProgram "$out/bin/tsun" \
|
|
|
|
--prefix NODE_PATH : ${self.typescript}/lib/node_modules
|
|
|
|
'';
|
2022-03-29 03:22:35 +02:00
|
|
|
});
|
|
|
|
|
2022-04-11 14:34:18 +02:00
|
|
|
ts-node = super.ts-node.overrideAttrs (oldAttrs: {
|
|
|
|
buildInputs = oldAttrs.buildInputs ++ [ pkgs.makeWrapper ];
|
|
|
|
postInstall = ''
|
|
|
|
wrapProgram "$out/bin/ts-node" \
|
|
|
|
--prefix NODE_PATH : ${self.typescript}/lib/node_modules
|
|
|
|
'';
|
|
|
|
});
|
|
|
|
|
2022-03-29 03:22:35 +02:00
|
|
|
typescript = super.typescript.overrideAttrs (oldAttrs: {
|
|
|
|
meta = oldAttrs.meta // { mainProgram = "tsc"; };
|
2020-05-31 18:18:15 +02:00
|
|
|
});
|
|
|
|
|
2020-05-30 19:21:13 +02:00
|
|
|
typescript-language-server = super.typescript-language-server.override {
|
|
|
|
nativeBuildInputs = [ pkgs.makeWrapper ];
|
|
|
|
postInstall = ''
|
|
|
|
wrapProgram "$out/bin/typescript-language-server" \
|
2022-01-20 12:13:18 +01:00
|
|
|
--suffix PATH : ${pkgs.lib.makeBinPath [ self.typescript ]}
|
2020-05-30 19:21:13 +02:00
|
|
|
'';
|
2020-05-30 13:30:38 +02:00
|
|
|
};
|
|
|
|
|
2021-02-24 22:07:22 +01:00
|
|
|
teck-programmer = super.teck-programmer.override {
|
2021-11-15 18:38:25 +01:00
|
|
|
nativeBuildInputs = [ self.node-gyp-build ];
|
2021-07-16 00:11:37 +02:00
|
|
|
buildInputs = [ pkgs.libusb1 ];
|
2021-02-24 22:07:22 +01:00
|
|
|
};
|
|
|
|
|
2021-12-02 18:13:32 +01:00
|
|
|
uppy-companion = super."@uppy/companion".override {
|
|
|
|
name = "uppy-companion";
|
|
|
|
};
|
|
|
|
|
2020-09-13 15:14:26 +02:00
|
|
|
vega-cli = super.vega-cli.override {
|
2021-01-19 07:50:56 +01:00
|
|
|
nativeBuildInputs = [ pkgs.pkg-config ];
|
2020-09-13 15:14:26 +02:00
|
|
|
buildInputs = with pkgs; [
|
|
|
|
super.node-pre-gyp
|
|
|
|
pixman
|
|
|
|
cairo
|
|
|
|
pango
|
|
|
|
libjpeg
|
|
|
|
];
|
|
|
|
};
|
|
|
|
|
2020-09-13 22:13:58 +02:00
|
|
|
vega-lite = super.vega-lite.override {
|
|
|
|
postInstall = ''
|
2021-10-03 18:59:02 +02:00
|
|
|
cd node_modules
|
|
|
|
for dep in ${self.vega-cli}/lib/node_modules/vega-cli/node_modules/*; do
|
|
|
|
if [[ ! -d $dep ]]; then
|
|
|
|
ln -s "${self.vega-cli}/lib/node_modules/vega-cli/node_modules/$dep"
|
|
|
|
fi
|
|
|
|
done
|
2020-09-13 22:13:58 +02:00
|
|
|
'';
|
2021-10-03 18:59:02 +02:00
|
|
|
passthru.tests = {
|
|
|
|
simple-execution = pkgs.callPackage ./package-tests/vega-lite.nix {
|
|
|
|
inherit (self) vega-lite;
|
|
|
|
};
|
|
|
|
};
|
2020-09-13 22:13:58 +02:00
|
|
|
};
|
|
|
|
|
2020-05-30 13:30:38 +02:00
|
|
|
webtorrent-cli = super.webtorrent-cli.override {
|
|
|
|
buildInputs = [ self.node-gyp-build ];
|
|
|
|
};
|
|
|
|
|
|
|
|
joplin = super.joplin.override {
|
|
|
|
nativeBuildInputs = [ pkgs.pkg-config ];
|
|
|
|
buildInputs = with pkgs; [
|
|
|
|
# required by sharp
|
|
|
|
# https://sharp.pixelplumbing.com/install
|
|
|
|
vips
|
|
|
|
|
2020-09-19 18:31:15 +02:00
|
|
|
libsecret
|
|
|
|
self.node-gyp-build
|
2020-05-30 13:30:38 +02:00
|
|
|
self.node-pre-gyp
|
2021-04-24 06:54:23 +02:00
|
|
|
] ++ lib.optionals stdenv.isDarwin [
|
|
|
|
darwin.apple_sdk.frameworks.AppKit
|
|
|
|
darwin.apple_sdk.frameworks.Security
|
2020-05-29 18:22:23 +02:00
|
|
|
];
|
2020-05-30 13:30:38 +02:00
|
|
|
};
|
2020-05-29 18:22:23 +02:00
|
|
|
|
2020-05-30 13:30:38 +02:00
|
|
|
thelounge = super.thelounge.override {
|
|
|
|
buildInputs = [ self.node-pre-gyp ];
|
2020-06-10 18:19:34 +02:00
|
|
|
postInstall = ''
|
|
|
|
echo /var/lib/thelounge > $out/lib/node_modules/thelounge/.thelounge_home
|
2022-01-09 04:05:05 +01:00
|
|
|
patch -d $out/lib/node_modules/thelounge -p1 < ${./thelounge-packages-path.patch}
|
2020-06-10 18:19:34 +02:00
|
|
|
'';
|
2022-01-11 03:29:04 +01:00
|
|
|
passthru.tests = { inherit (nixosTests) thelounge; };
|
2022-01-12 03:03:46 +01:00
|
|
|
meta = super.thelounge.meta // { maintainers = with lib.maintainers; [ winter ]; };
|
2020-05-30 13:30:38 +02:00
|
|
|
};
|
2021-01-04 13:13:53 +01:00
|
|
|
|
2022-01-20 18:18:28 +01:00
|
|
|
triton = super.triton.override {
|
|
|
|
nativeBuildInputs = [ pkgs.installShellFiles ];
|
|
|
|
postInstall = ''
|
|
|
|
installShellCompletion --cmd triton --bash <($out/bin/triton completion)
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2021-01-04 13:13:53 +01:00
|
|
|
yaml-language-server = super.yaml-language-server.override {
|
|
|
|
nativeBuildInputs = [ pkgs.makeWrapper ];
|
|
|
|
postInstall = ''
|
|
|
|
wrapProgram "$out/bin/yaml-language-server" \
|
|
|
|
--prefix NODE_PATH : ${self.prettier}/lib/node_modules
|
|
|
|
'';
|
|
|
|
};
|
2021-05-15 07:59:28 +02:00
|
|
|
|
|
|
|
wavedrom-cli = super.wavedrom-cli.override {
|
|
|
|
nativeBuildInputs = [ pkgs.pkg-config self.node-pre-gyp ];
|
|
|
|
# These dependencies are required by
|
|
|
|
# https://github.com/Automattic/node-canvas.
|
|
|
|
buildInputs = with pkgs; [
|
|
|
|
pixman
|
|
|
|
cairo
|
|
|
|
pango
|
|
|
|
];
|
|
|
|
};
|
2020-05-29 18:22:23 +02:00
|
|
|
};
|
2020-05-30 13:30:38 +02:00
|
|
|
in self
|