infrastructure/machines/web01/metis/package.nix
2023-09-25 00:40:47 +02:00

23 lines
524 B
Nix

{ lib, fetchgit, buildNpmPackage, src }:
buildNpmPackage {
pname = "metis";
version = "unstable";
inherit src;
npmDepsHash = "sha256-RbjWNVY8KlPP9ajQRnrsWhOZiiyyMGQSY39lmZnTC1I=";
installPhase = ''
cp -r public $out
'';
meta = with lib; {
description = "";
homepage = "https://git.dgnum.eu/DGNum/metis";
license = licenses.unfree; # FIXME: nix-init did not found a license
maintainers = with maintainers; [ thubrecht ];
mainProgram = "metis";
platforms = platforms.all;
};
}