summary refs log tree commit diff
path: root/pkgs/applications/version-management/redmine
diff options
context:
space:
mode:
authorAaron Andersen <aaron@fosslib.net>2018-08-19 16:42:08 -0400
committerAaron Andersen <aaron@fosslib.net>2018-08-19 16:42:08 -0400
commite180796caae6ea053c316c04f22d519848ed3563 (patch)
treec5c3034e08b1fa52e40e70e89d3c510a893737ff /pkgs/applications/version-management/redmine
parentc93c0f3ae42e19ea054c2c1f69b22cd4a310c8e2 (diff)
downloadnixpkgs-e180796caae6ea053c316c04f22d519848ed3563.tar
nixpkgs-e180796caae6ea053c316c04f22d519848ed3563.tar.gz
nixpkgs-e180796caae6ea053c316c04f22d519848ed3563.tar.bz2
nixpkgs-e180796caae6ea053c316c04f22d519848ed3563.tar.lz
nixpkgs-e180796caae6ea053c316c04f22d519848ed3563.tar.xz
nixpkgs-e180796caae6ea053c316c04f22d519848ed3563.tar.zst
nixpkgs-e180796caae6ea053c316c04f22d519848ed3563.zip
updated Gemfile... still needs to be fixed up though
Diffstat (limited to 'pkgs/applications/version-management/redmine')
-rw-r--r--pkgs/applications/version-management/redmine/Gemfile4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/applications/version-management/redmine/Gemfile b/pkgs/applications/version-management/redmine/Gemfile
index 2ff32549942..744d6bfdd74 100644
--- a/pkgs/applications/version-management/redmine/Gemfile
+++ b/pkgs/applications/version-management/redmine/Gemfile
@@ -58,8 +58,11 @@ end
 # configuration file
 require 'erb'
 require 'yaml'
+
+# NixOS - manually added to ensure mysql and postgres will always be include
 gem "mysql2", "~> 0.4.6", :platforms => [:mri, :mingw, :x64_mingw]
 gem "pg", "~> 0.18.1", :platforms => [:mri, :mingw, :x64_mingw]
+
 database_file = File.join(File.dirname(__FILE__), "config/database.yml")
 if File.exist?(database_file)
   database_config = YAML::load(ERB.new(IO.read(database_file)).result)
@@ -88,6 +91,7 @@ else
   warn("Please configure your config/database.yml first")
 end
 
+# NixOS - manually removed because I couldn't figure out how to get "bundle exec rails server webrick -e production" to ignore these groups
 #group :development do
 #  gem "rdoc", "~> 4.3"
 #  gem "yard"