Skip to content

Commit

Permalink
send: init at 3.4.23
Browse files Browse the repository at this point in the history
  • Loading branch information
Moraxyc committed Oct 26, 2024
1 parent 63ded93 commit 995db3f
Showing 1 changed file with 58 additions and 0 deletions.
58 changes: 58 additions & 0 deletions pkgs/by-name/se/send/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
{
lib,
buildNpmPackage,
fetchFromGitHub,
makeBinaryWrapper,
nodejs,
nixosTests,
}:

buildNpmPackage rec {
pname = "send";
version = "3.4.23";

src = fetchFromGitHub {
owner = "timvisee";
repo = "send";
rev = "refs/tags/v${version}";
hash = "sha256-bqQEXLwUvTKX+m2yNHRnrl+eeaGmcovXpXugxd+j14A=";
};

npmDepsHash = "sha256-r1iaurKuhpP0sevB5pFdtv9j1ikM1fKL7Jgakh4FzTI=";

nativeBuildInputs = [
makeBinaryWrapper
];

env = {
PUPPETEER_SKIP_CHROMIUM_DOWNLOAD = "true";
};

makeCacheWritable = true;

npmPackFlags = [ "--ignore-scripts" ];

NODE_OPTIONS = "--openssl-legacy-provider";

postInstall = ''
cp -r dist $out/lib/node_modules/send/
ln -s $out/lib/node_modules/send/dist/version.json $out/lib/node_modules/send/version.json
makeWrapper ${lib.getExe nodejs} $out/bin/send \
--add-flags $out/lib/node_modules/send/server/bin/prod.js \
--set "NODE_ENV" "production"
'';

passthru.tests = {
inherit (nixosTests) send;
};

meta = {
description = "File Sharing Experiment";
changelog = "https://github.com/timvisee/send/releases/tag/v${version}";
homepage = "https://github.com/timvisee/send";
license = lib.licenses.mpl20;
maintainers = with lib.maintainers; [ moraxyc ];
mainProgram = "send";
};
}

0 comments on commit 995db3f

Please sign in to comment.