Created
March 14, 2018 13:57
-
-
Save manveru/5a7be673ee3e357f7962f945aa9d7418 to your computer and use it in GitHub Desktop.
jekyll
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
source 'https://rubygems.org' do | |
gem 'jekyll' | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
with import (fetchGit { | |
url = https://github.com/nixos/nixpkgs-channels; | |
rev = "7a04c2ca296c0698f1c7d5c17be7f931f77691f7"; | |
}) {}; | |
let | |
env = bundlerEnv { | |
name = "jekyll-gems"; | |
ruby = ruby_2_5; | |
gemdir = ./.; | |
}; | |
in stdenv.mkDerivation { | |
name = "jekyll-shell"; | |
buildInputs = [ bundix env env.wrappedRuby ]; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment