mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-30 02:42:59 +00:00
3a83109945
* aescrypt: change `${pname}` to string literal * bandwidth: change `${pname}` to string literal * bc: change `${pname}` to string literal * bdfresize: change `${pname}` to string literal * birdfont: change `${pname}` to string literal * brltty: change `${pname}` to string literal * calamares: change `${pname}` to string literal * ccal: change `${pname}` to string literal * clac: change `${pname}` to string literal * colord-gtk4: change `${pname}` to string literal * colord: change `${pname}` to string literal * colorless: change `${pname}` to string literal * cunit: change `${pname}` to string literal * datamash: change `${pname}` to string literal * dateutils: change `${pname}` to string literal * desktop-file-utils: change `${pname}` to string literal * digitemp: change `${pname}` to string literal * ding-libs: change `${pname}` to string literal * docbook2mdoc: change `${pname}` to string literal * dtach: change `${pname}` to string literal * empty: change `${pname}` to string literal * entr: change `${pname}` to string literal * envsubst: change `${pname}` to string literal * ethtool: change `${pname}` to string literal * fdtools: change `${pname}` to string literal * filebench: change `${pname}` to string literal * findutils: change `${pname}` to string literal * fortune: change `${pname}` to string literal * fpart: change `${pname}` to string literal * fxlinuxprintutil: change `${pname}` to string literal * gbdfed: change `${pname}` to string literal * getopt: change `${pname}` to string literal * github-copilot-cli: change `${pname}` to string literal * gparted: change `${pname}` to string literal * hddtemp: change `${pname}` to string literal * hdfview: change `${pname}` to string literal * hpcg: change `${pname}` to string literal * hpl: change `${pname}` to string literal * ink: change `${pname}` to string literal * ised: change `${pname}` to string literal * isoimagewriter: change `${pname}` to string literal * kronometer: change `${pname}` to string literal * libsForQt5.qt5ct: change `${pname}` to string literal * lilo: change `${pname}` to string literal * lockfileProgs: change `${pname}` to string literal * map-cmd: change `${pname}` to string literal * mcrypt: change `${pname}` to string literal * most: change `${pname}` to string literal * mrtg: change `${pname}` to string literal * ms-sys: change `${pname}` to string literal * multitime: change `${pname}` to string literal * nbench: change `${pname}` to string literal * osinfo-db-tools: change `${pname}` to string literal * parallel-full: change `${pname}` to string literal * phoronix-test-suite: change `${pname}` to string literal * pod2mdoc: change `${pname}` to string literal * powerline-rs: change `${pname}` to string literal * recoverjpeg: change `${pname}` to string literal * recutils: change `${pname}` to string literal * routino: change `${pname}` to string literal * rpm-ostree: change `${pname}` to string literal * screen: change `${pname}` to string literal * sharedown: change `${pname}` to string literal * statserial: change `${pname}` to string literal * taoup: change `${pname}` to string literal * texi2mdoc: change `${pname}` to string literal * tmpwatch: change `${pname}` to string literal * toilet: change `${pname}` to string literal * triehash: change `${pname}` to string literal * ttfautohint: change `${pname}` to string literal * txt2man: change `${pname}` to string literal * urjtag: change `${pname}` to string literal * uudeview: change `${pname}` to string literal * uutils-coreutils: change `${pname}` to string literal * vttest: change `${pname}` to string literal * wacomtablet: change `${pname}` to string literal * xcd: change `${pname}` to string literal * xdaliclock: change `${pname}` to string literal * xjobs: change `${pname}` to string literal * feishin: change `${pname}` to string literal * gifsicle: change `${pname}` to string literal * nzbhydra2: change `${pname}` to string literal * vatprism: change `${pname}` to string literal * webfs: change `${pname}` to string literal * yggstack: change `${pname}` to string literal
128 lines
3.3 KiB
Nix
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 = "Sharedown";
|
|
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 = "Sharedown-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";
|
|
};
|
|
}
|