nixpkgs/pkgs/servers/web-apps/bookstack/default.nix

39 lines
1.2 KiB
Nix
Raw Normal View History

2021-01-17 20:08:40 +00:00
{ pkgs, system, lib, fetchFromGitHub, dataDir ? "/var/lib/bookstack" }:
let
package = (import ./composition.nix {
inherit pkgs system;
noDev = true; # Disable development dependencies
}).overrideAttrs (attrs : {
installPhase = attrs.installPhase + ''
rm -R $out/storage $out/public/uploads
ln -s ${dataDir}/.env $out/.env
ln -s ${dataDir}/storage $out/storage
ln -s ${dataDir}/public/uploads $out/public/uploads
'';
});
in package.override rec {
pname = "bookstack";
2021-07-12 07:50:31 +00:00
version = "21.05.3";
2021-01-17 20:08:40 +00:00
src = fetchFromGitHub {
owner = "bookstackapp";
repo = pname;
2021-01-17 20:08:40 +00:00
rev = "v${version}";
2021-07-12 07:50:31 +00:00
sha256 = "0dymrmy771lv6h9432vw7d12x5xgchjn9s3z8maz3b9d5xlx9gw8";
2021-01-17 20:08:40 +00:00
};
meta = with lib; {
description = "A platform to create documentation/wiki content built with PHP & Laravel";
longDescription = ''
A platform for storing and organising information and documentation.
Details for BookStack can be found on the official website at https://www.bookstackapp.com/.
'';
homepage = "https://www.bookstackapp.com/";
license = licenses.mit;
maintainers = with maintainers; [ ymarkus ];
platforms = platforms.linux;
};
}