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

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

{ bundlerApp }:

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