bookstack: init at 0.31.7
This commit is contained in:
@@ -0,0 +1,38 @@
|
||||
{ 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 {
|
||||
name = "bookstack";
|
||||
version = "0.31.7";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "bookstackapp";
|
||||
repo = name;
|
||||
rev = "v${version}";
|
||||
sha256 = "1jak6g2q4zbr0gxqj0bqhks687whmmw8ylzwm4saws7ikcxkwna4";
|
||||
};
|
||||
|
||||
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;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user