nixpkgs/pkgs/tools/misc/sharedown/default.nix
emilylange bc47f473be
sharedown: unbreak build
This is essentially a partial revert of
c271196d42 which was a successful attempt
at unbreaking this build back in November 2023.

That workaround, however, no longer, well.. works.

Instead I figured out what was wrong with the initial version and fixed
that.
Hopefully this fix lasts longer than the one before.

The important bit that was missing is that `export npm_config_nodedir`
line.

The code in question is copied from
https://nixos.org/manual/nixpkgs/unstable/#javascript-yarn2nix-pitfalls
d176767c02/doc/languages-frameworks/javascript.section.md (pitfalls-javascript-yarn2nix-pitfalls))

I suggest following the link for even more links as to why some commands
from there are the way they are.
2024-02-15 01:41:11 +01:00

128 lines
3.3 KiB
Nix

{ stdenvNoCC
, lib
, fetchFromGitHub
, ffmpeg
, yt-dlp
, libsecret
, python3
, pkg-config
, nodejs
, electron
, makeWrapper
, makeDesktopItem
, copyDesktopItems
, yarn2nix-moretea
, fetchYarnDeps
, chromium
}:
stdenvNoCC.mkDerivation rec {
pname = "Sharedown";
version = "5.3.1";
src = fetchFromGitHub {
owner = "kylon";
repo = pname;
rev = version;
sha256 = "sha256-llQt3m/qu7v5uQIfA1yxl2JZiFafk6sPgcvrIpQy/DI=";
};
nativeBuildInputs = [
copyDesktopItems
makeWrapper
];
desktopItems = [
(makeDesktopItem {
name = "Sharedown";
exec = "Sharedown";
icon = "Sharedown";
comment = "An Application to save your Sharepoint videos for offline usage.";
desktopName = "Sharedown";
categories = [ "Network" "Archiving" ];
})
];
dontBuild = true;
installPhase =
let
binPath = lib.makeBinPath ([
ffmpeg
yt-dlp
]);
modules = yarn2nix-moretea.mkYarnModules rec {
name = "${pname}-modules-${version}";
inherit pname version;
yarnFlags = [ "--production" ];
pkgConfig = {
keytar = {
nativeBuildInputs = [
python3
pkg-config
];
buildInputs = [
libsecret
];
postInstall = ''
yarn --offline run build
# Remove unnecessary store path references.
rm build/config.gypi
'';
};
};
# needed for node-gyp, copied from https://nixos.org/manual/nixpkgs/unstable/#javascript-yarn2nix-pitfalls
# permalink: https://github.com/NixOS/nixpkgs/blob/d176767c02cb2a048e766215078c3d231e666091/doc/languages-frameworks/javascript.section.md#pitfalls-javascript-yarn2nix-pitfalls
preBuild = ''
mkdir -p $HOME/.node-gyp/${nodejs.version}
echo 9 > $HOME/.node-gyp/${nodejs.version}/installVersion
ln -sfv ${nodejs}/include $HOME/.node-gyp/${nodejs.version}
export npm_config_nodedir=${nodejs}
'';
packageJSON = "${src}/package.json";
yarnLock = ./yarn.lock;
offlineCache = fetchYarnDeps {
inherit yarnLock;
hash = "sha256-NzWzkZbf5R1R72K7KVJbZUCzso1UZ0p3+lRYZE2M/dI=";
};
};
in
''
runHook preInstall
mkdir -p "$out/bin" "$out/share/Sharedown" "$out/share/applications" "$out/share/icons/hicolor/512x512/apps"
# Electron app
cp -r *.js *.json sharedownlogo.png sharedown "${modules}/node_modules" "$out/share/Sharedown"
# Desktop Launcher
cp build/icon.png "$out/share/icons/hicolor/512x512/apps/Sharedown.png"
# Install electron wrapper script
makeWrapper "${electron}/bin/electron" "$out/bin/Sharedown" \
--add-flags "$out/share/Sharedown" \
--prefix PATH : "${binPath}" \
--set PUPPETEER_EXECUTABLE_PATH "${chromium}/bin/chromium"
runHook postInstall
'';
passthru.updateScript = ./update.sh;
meta = with lib; {
description = "Application to save your Sharepoint videos for offline usage";
homepage = "https://github.com/kylon/Sharedown";
license = licenses.gpl3Plus;
maintainers = with maintainers; [
];
platforms = platforms.unix;
mainProgram = "Sharedown";
};
}