mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 08:53:21 +00:00
38 lines
927 B
Nix
38 lines
927 B
Nix
|
{
|
||
|
lib,
|
||
|
buildNpmPackage,
|
||
|
vips,
|
||
|
pkg-config,
|
||
|
src,
|
||
|
version,
|
||
|
}:
|
||
|
|
||
|
buildNpmPackage {
|
||
|
pname = "pingvin-share-frontend";
|
||
|
inherit version;
|
||
|
|
||
|
src = "${src}/frontend";
|
||
|
|
||
|
npmInstallFlags = [ "--build-from-source" ];
|
||
|
installPhase = ''
|
||
|
cp -r . $out
|
||
|
ln -s $out/node_modules/.bin $out/bin
|
||
|
'';
|
||
|
|
||
|
buildInputs = [ vips ];
|
||
|
nativeBuildInputs = [ pkg-config ];
|
||
|
|
||
|
npmDepsHash = "sha256-66CUVLbq2XdOQAr69DcvxTMvOgSR/RTKPaq80JG+8dg=";
|
||
|
makeCacheWritable = true;
|
||
|
npmFlags = [ "--legacy-peer-deps" ];
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "Frontend of pingvin-share, a self-hosted file sharing platform";
|
||
|
homepage = "https://github.com/stonith404/pingvin-share";
|
||
|
downloadPage = "https://github.com/stonith404/pingvin-share/releases";
|
||
|
changelog = "https://github.com/stonith404/pingvin-share/releases/tag/v${version}";
|
||
|
license = licenses.bsd2;
|
||
|
maintainers = with maintainers; [ ratcornu ];
|
||
|
};
|
||
|
}
|