2023-05-10 23:04:05 +00:00
|
|
|
{ pkgs }:
|
2022-12-01 09:06:50 +00:00
|
|
|
|
2023-05-10 23:04:05 +00:00
|
|
|
pkgs.stdenv.mkDerivation {
|
2022-12-01 09:06:50 +00:00
|
|
|
pname = "website-docs-nifoc-pw";
|
|
|
|
version = "2021-08-30";
|
|
|
|
|
|
|
|
src = pkgs.fetchFromGitHub {
|
|
|
|
owner = "nifoc";
|
|
|
|
repo = "nifoc.pw-docs";
|
|
|
|
rev = "24034da912e3d7fddc447734ca4c9a5951a0fa32";
|
|
|
|
sha256 = "sha256-GwVwbLUbxpFidOU1CTHFbYs/MscHpsqiYmnyvLtnYjM=";
|
|
|
|
fetchSubmodules = false;
|
|
|
|
};
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir $out
|
|
|
|
mv site $out/
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Static documentation files for some older projects";
|
|
|
|
homepage = "https://github.com/nifoc/nifoc.pw-docs";
|
|
|
|
platforms = [ "x86_64-darwin" "aarch64-darwin" "aarch64-linux" "x86_64-linux" ];
|
|
|
|
};
|
|
|
|
}
|