mirror of
https://git.oat.zone/dark-firepit/dotfiles
synced 2024-11-30 11:41:33 +01:00
12 lines
218 B
Nix
12 lines
218 B
Nix
{ pkgs }:
|
|
|
|
let
|
|
pname = "ghost";
|
|
version = "5.33.2";
|
|
in pkgs.stdenv.mkDerivation {
|
|
inherit pname version;
|
|
buildInputs = with pkgs; [ nodejs yarn vips ];
|
|
ghostCliVersion = "1.24.0";
|
|
builder = ./builder.sh;
|
|
}
|