mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 08:53:21 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
56 lines
1.3 KiB
Nix
56 lines
1.3 KiB
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, buildNpmPackage
|
|
, prisma
|
|
, nix-update-script
|
|
}:
|
|
let
|
|
version = "0.9";
|
|
in
|
|
buildNpmPackage {
|
|
pname = "documenso";
|
|
inherit version;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "documenso";
|
|
repo = "documenso";
|
|
rev = "v${version}";
|
|
hash = "sha256-uKOJVZ0GRHo/CYvd/Ix/tq1WDhutRji1tSGdcITsNlo=";
|
|
};
|
|
|
|
nativeBuildInputs = [ prisma ];
|
|
|
|
preBuild = ''
|
|
# somehow for linux, npm is not finding the prisma package with the
|
|
# packages installed with the lockfile.
|
|
# This generates a prisma version incompatibility warning and is a kludge
|
|
# until the upstream package-lock is modified.
|
|
prisma generate
|
|
'';
|
|
|
|
npmDepsHash = "sha256-+JbvFMi8xoyxkuL9k96K1Vq0neciCGkkyZUPd15ES2E=";
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir $out
|
|
cp -r node_modules $out/
|
|
cp package-lock.json $out
|
|
cp apps/web/package.json $out
|
|
cp -r apps/web/public $out/
|
|
cp -r apps/web/.next $out/
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
passthru.updateScript = nix-update-script {};
|
|
|
|
meta = with lib; {
|
|
description = "Open Source DocuSign Alternative";
|
|
homepage = "https://github.com/documenso/documenso";
|
|
license = licenses.agpl3Only;
|
|
maintainers = with maintainers; [ happysalada ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|