Skip to content

Instantly share code, notes, and snippets.

@flyx

flyx/default.nix Secret

Created December 1, 2017 17:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save flyx/c22c77452db820e5c1d691a7b955cbfc to your computer and use it in GitHub Desktop.
Save flyx/c22c77452db820e5c1d691a7b955cbfc to your computer and use it in GitHub Desktop.
with (import <nixpkgs> {});
let env = bundlerEnv {
name = "custom-jekyll";
inherit ruby;
gemfile = ./Gemfile;
lockfile = ./Gemfile.lock;
gemset = ./gemset.nix;
};
in stdenv.mkDerivation {
name = "custom-jekyll";
buildInputs = [env ruby python36Packages.pygments];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment