summary refs log blame commit diff
path: root/Documentation/jekyll.nix
blob: 6f2866ff7c0064ba485a9708e47615cd141823fc (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11


                                                         
                                                                        
 
               




                      

     
# SPDX-FileCopyrightText: 2022 Alyssa Ross <hi@alyssa.is>
# SPDX-License-Identifier: MIT

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

{ bundlerApp }:

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