summary refs log tree commit diff
path: root/Documentation/jekyll.nix
blob: 4b32ebe698e09c8292095edaf829eee293b85748 (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

import ../lib/eval-config.nix ({ config, ... }: config.pkgs.callPackage (

{ bundlerApp }:

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