2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchurl, bundlerEnv, ruby, makeWrapper }:
|
2014-10-07 09:52:45 +01:00
|
|
|
|
2018-08-19 13:09:38 +01:00
|
|
|
let
|
2022-04-23 23:50:23 +01:00
|
|
|
version = "4.2.5";
|
2018-08-19 13:09:38 +01:00
|
|
|
rubyEnv = bundlerEnv {
|
|
|
|
name = "redmine-env-${version}";
|
2014-10-07 09:52:45 +01:00
|
|
|
|
2018-08-19 13:09:38 +01:00
|
|
|
inherit ruby;
|
|
|
|
gemdir = ./.;
|
2020-04-09 16:14:07 +01:00
|
|
|
groups = [ "development" "ldap" "markdown" "minimagick" "openid" "test" ];
|
2014-10-07 09:52:45 +01:00
|
|
|
};
|
2018-08-19 13:09:38 +01:00
|
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-13 22:52:01 +01:00
|
|
|
pname = "redmine";
|
|
|
|
inherit version;
|
2018-08-19 13:09:38 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2022-04-23 23:50:23 +01:00
|
|
|
url = "https://www.redmine.org/releases/${pname}-${version}.tar.gz";
|
|
|
|
sha256 = "112rc2sjx6x7046fjz7np0ilszvkqapc180ld02ncwmdxaq88w6r";
|
2018-08-19 13:09:38 +01:00
|
|
|
};
|
|
|
|
|
2020-12-17 01:26:00 +00:00
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
2018-08-19 13:09:38 +01:00
|
|
|
buildInputs = [ rubyEnv rubyEnv.wrappedRuby rubyEnv.bundler ];
|
|
|
|
|
2020-08-09 12:18:21 +01:00
|
|
|
# taken from https://www.redmine.org/issues/33784
|
|
|
|
# can be dropped when the upstream bug is closed and the fix is present in the upstream release
|
|
|
|
patches = [ ./0001-python3.patch ];
|
|
|
|
|
2018-08-19 13:09:38 +01:00
|
|
|
buildPhase = ''
|
|
|
|
mv config config.dist
|
2018-10-11 02:04:08 +01:00
|
|
|
mv public/themes public/themes.dist
|
2018-08-19 13:09:38 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
2020-12-17 01:26:00 +00:00
|
|
|
mkdir -p $out/bin $out/share
|
2018-08-19 13:09:38 +01:00
|
|
|
cp -r . $out/share/redmine
|
2018-10-11 02:04:08 +01:00
|
|
|
for i in config files log plugins public/plugin_assets public/themes tmp; do
|
2018-08-19 13:09:38 +01:00
|
|
|
rm -rf $out/share/redmine/$i
|
2018-10-11 02:04:08 +01:00
|
|
|
ln -fs /run/redmine/$i $out/share/redmine/$i
|
2018-08-19 13:09:38 +01:00
|
|
|
done
|
2020-12-17 01:26:00 +00:00
|
|
|
|
|
|
|
makeWrapper ${rubyEnv.wrappedRuby}/bin/ruby $out/bin/rdm-mailhandler.rb --add-flags $out/share/redmine/extra/mail_handler/rdm-mailhandler.rb
|
2018-08-19 13:09:38 +01:00
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://www.redmine.org/";
|
2018-08-19 13:09:38 +01:00
|
|
|
platforms = platforms.linux;
|
2022-04-24 02:32:36 +01:00
|
|
|
maintainers = with maintainers; [ aanderse felixsinger ];
|
2018-08-19 13:09:38 +01:00
|
|
|
license = licenses.gpl2;
|
|
|
|
};
|
2019-01-30 12:37:24 +00:00
|
|
|
}
|