mirror of
https://codeberg.org/muon/home.git
synced 2026-03-09 11:53:12 +00:00
Add grav
This commit is contained in:
parent
614caf7d6f
commit
15a3ca5e14
6 changed files with 410 additions and 0 deletions
30
modules/nixos/server/grav/package.nix
Normal file
30
modules/nixos/server/grav/package.nix
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
{ pkgs, lib, fetchzip, ... }:
|
||||
|
||||
let version = "1.7.48";
|
||||
in pkgs.stdenvNoCC.mkDerivation {
|
||||
pname = "grav";
|
||||
inherit version;
|
||||
|
||||
src = fetchzip {
|
||||
url =
|
||||
"https://github.com/getgrav/grav/releases/download/${version}/grav-admin-v${version}.zip";
|
||||
hash = "sha256-e8WpdO0n3pY4Ajs1fvMkMI+CrR6uMitswvYS5rxal4g=";
|
||||
};
|
||||
|
||||
patches = [ ./01-nix.patch ];
|
||||
|
||||
installPhase = ''
|
||||
|
||||
runHook preInstall
|
||||
mkdir -p $out/
|
||||
cp -R . $out/
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Fast, simple, and flexible, file-based web platform";
|
||||
homepage = "https://getgrav.com";
|
||||
maintainers = with maintainers; [ rycee ];
|
||||
license = licenses.mit;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue