2023-05-18 08:19:43 +00:00
|
|
|
{ lib, stdenv, fetchurl, bundlerEnv, ruby, defaultGemConfig, makeWrapper, nixosTests }:
|
2014-10-07 08:52:45 +00:00
|
|
|
|
2018-08-19 12:09:38 +00:00
|
|
|
let
|
2023-05-18 08:19:43 +00:00
|
|
|
version = "5.0.5";
|
2018-08-19 12:09:38 +00:00
|
|
|
rubyEnv = bundlerEnv {
|
|
|
|
name = "redmine-env-${version}";
|
2014-10-07 08:52:45 +00:00
|
|
|
|
2018-08-19 12:09:38 +00:00
|
|
|
inherit ruby;
|
|
|
|
gemdir = ./.;
|
2023-05-18 11:35:59 +00:00
|
|
|
groups = [ "development" "ldap" "markdown" "common_mark" "minimagick" "test" ];
|
2014-10-07 08:52:45 +00:00
|
|
|
};
|
2018-08-19 12:09:38 +00:00
|
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-13 21:52:01 +00:00
|
|
|
pname = "redmine";
|
|
|
|
inherit version;
|
2018-08-19 12:09:38 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2022-04-23 22:50:23 +00:00
|
|
|
url = "https://www.redmine.org/releases/${pname}-${version}.tar.gz";
|
2023-05-18 08:19:43 +00:00
|
|
|
sha256 = "sha256-qJrRxLub8CXmUnx3qxjI+vd0nJSpdcryz9u6AOsSpIE=";
|
2018-08-19 12:09:38 +00:00
|
|
|
};
|
|
|
|
|
2020-12-17 01:26:00 +00:00
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
2018-08-19 12:09:38 +00:00
|
|
|
buildInputs = [ rubyEnv rubyEnv.wrappedRuby rubyEnv.bundler ];
|
|
|
|
|
2020-08-09 11:18:21 +00: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 12:09:38 +00:00
|
|
|
buildPhase = ''
|
|
|
|
mv config config.dist
|
2018-10-11 01:04:08 +00:00
|
|
|
mv public/themes public/themes.dist
|
2018-08-19 12:09:38 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
2020-12-17 01:26:00 +00:00
|
|
|
mkdir -p $out/bin $out/share
|
2018-08-19 12:09:38 +00:00
|
|
|
cp -r . $out/share/redmine
|
2018-10-11 01:04:08 +00:00
|
|
|
for i in config files log plugins public/plugin_assets public/themes tmp; do
|
2018-08-19 12:09:38 +00:00
|
|
|
rm -rf $out/share/redmine/$i
|
2018-10-11 01:04:08 +00:00
|
|
|
ln -fs /run/redmine/$i $out/share/redmine/$i
|
2018-08-19 12:09:38 +00: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 12:09:38 +00:00
|
|
|
'';
|
|
|
|
|
2022-09-09 09:07:38 +00:00
|
|
|
passthru.tests.redmine = nixosTests.redmine;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://www.redmine.org/";
|
2018-08-19 12:09:38 +00:00
|
|
|
platforms = platforms.linux;
|
2023-05-18 11:35:59 +00:00
|
|
|
maintainers = with maintainers; [ aanderse felixsinger megheaiulian ];
|
2018-08-19 12:09:38 +00:00
|
|
|
license = licenses.gpl2;
|
|
|
|
};
|
2019-01-30 12:37:24 +00:00
|
|
|
}
|