mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-10 04:49:19 -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 = "3789d9ae2b0135828a6d92e2e6846aec42a29d88";
|
|
sha256 = "sha256-nIAeZRxZ86QuZxGnHTIaawySiTEdw8ZQ4L8eR/2Mdy0=";
|
|
};
|
|
buildPhase = ''
|
|
'';
|
|
installPhase = ''
|
|
mkdir $out
|
|
cp -r ./* $out
|
|
'';
|
|
}
|