Created
January 4, 2016 17:10
-
-
Save pjones/842db5a4057597abe23d to your computer and use it in GitHub Desktop.
This file contains 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
let | |
pkgs = import <nixpkgs> {}; | |
stdenv = pkgs.stdenv; | |
mysql = pkgs.mysql55; | |
in rec { | |
cltc-claims = stdenv.mkDerivation rec { | |
name = "cltc-claims"; | |
version = "0.0"; | |
src = ./.; | |
buildInputs = with pkgs; [ | |
ruby_2_2_2 bundler git zlib openssl | |
# See above `let' for MySQL version and vendor. | |
mysql | |
]; | |
shellHook = '' | |
if [ ! -r .bundle/config ]; then | |
# Watch out, the .bundle/config file might have spurious | |
# quotes in it due to a bug. Right now you have to clean that | |
# up by hand. | |
bundle config --local build.mysql2 \ | |
--with-zlib=${pkgs.zlib} \ | |
--with-mysql-include=${mysql}/include/mysql \ | |
--with-mysql-lib=${mysql}/lib > /dev/null | |
fi | |
# Need correct LD_FLAGS for building some C extensions (mysql). | |
export LD_FLAGS="-L${pkgs.openssl}/lib" | |
# Now that we have all that, let's install some gems. | |
bundle install --path vendor/bundle | |
''; | |
}; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment