package adams site and remove tetrio

This commit is contained in:
Kopatz
2024-05-25 21:19:55 +02:00
parent ceff361008
commit ba7aba817e
10 changed files with 98 additions and 144 deletions

View File

@@ -0,0 +1,16 @@
{ lib, buildNpmPackage, fetchFromGitHub }:
buildNpmPackage rec {
pname = "adam-site";
version = "1.0.0";
src = fetchGit {
url = "git@github.com:oberprofis/adams.git";
ref = "main";
rev = "0d1d5003bd5681c5dbe2ad12ed1ef7e56bb4c197";
};
npmDepsHash="sha256-ndpuIqMAitnx0rswYD60l5JhDMdaKH77Qdu7zNgwj/o=";
installPhase = ''
mkdir -p $out
cp -r ./dist/adams-site/* $out
'';
}