mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 20:39:18 -08:00
15 lines
369 B
Nix
15 lines
369 B
Nix
{ stdenv, fetchFromGitHub, lib }: stdenv.mkDerivation rec {
|
|
name = "irlsite";
|
|
src = fetchFromGitHub {
|
|
owner = "kittywitch";
|
|
repo = "inskip.me";
|
|
rev = "a430a42d70ca9ddb554e8e0c0ed78a33b3ccb9e5";
|
|
sha256 = "sha256-SUhXD0/PdWkvMUGOVTm9PPw8fi+Q+7Psw61VhMKRf2I=";
|
|
};
|
|
buildPhase = ''
|
|
'';
|
|
installPhase = ''
|
|
mkdir $out
|
|
cp -r ./* $out
|
|
'';
|
|
}
|