summary refs log tree commit diff
path: root/Documentation/jekyll.nix
blob: bc804b133f381b071d93618ff04df80595d81e11 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
# SPDX-FileCopyrightText: 2022 Alyssa Ross <hi@alyssa.is>
# SPDX-License-Identifier: MIT

{ pkgs ? import <nixpkgs> {} }: pkgs.callPackage (

{ bundlerApp }:

bundlerApp {
  pname = "jekyll";
  gemdir = ./.;
  exes = [ "jekyll" ];
}
) { }