feat: ghost

This commit is contained in:
Anish Lakhwara
2024-05-21 20:39:19 -07:00
parent a37a72e81f
commit 091b653c9a
4 changed files with 186 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
{ pkgs }:
let
pname = "ghost";
version = "5.8.0";
in pkgs.stdenv.mkDerivation {
inherit pname version;
buildInputs = with pkgs; [ nodejs yarn vips ];
ghostCliVersion = "1.21.1";
builder = ./builder.sh;
}