nixpkgs/pkgs/servers/web-apps/wiki-js/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

36 lines
757 B
Nix
Raw Normal View History

2021-03-18 12:33:40 +01:00
{ stdenv, fetchurl, lib, nixosTests }:
stdenv.mkDerivation rec {
pname = "wiki-js";
2022-11-20 14:06:01 +01:00
version = "2.5.292";
2021-03-18 12:33:40 +01:00
src = fetchurl {
url = "https://github.com/Requarks/wiki/releases/download/v${version}/${pname}.tar.gz";
2022-11-20 14:06:01 +01:00
sha256 = "sha256-45s/XvZx6WvxsxazwLpYjg6vlC07mBBxv6xNThpPFFA=";
2021-03-18 12:33:40 +01:00
};
sourceRoot = ".";
dontBuild = true;
installPhase = ''
runHook preInstall
2021-03-18 12:33:40 +01:00
mkdir $out
cp -r . $out
runHook postInstall
2021-03-18 12:33:40 +01:00
'';
2022-04-08 18:44:02 +02:00
passthru = {
tests = { inherit (nixosTests) wiki-js; };
updateScript = ./update.sh;
};
2021-03-18 12:33:40 +01:00
meta = with lib; {
homepage = "https://js.wiki/";
description = "A modern and powerful wiki app built on Node.js";
license = licenses.agpl3Only;
maintainers = with maintainers; [ ma27 ];
};
}