Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
79 lines
1.8 KiB
Nix
79 lines
1.8 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
bundlerEnv,
|
|
ruby_3_3,
|
|
makeWrapper,
|
|
nixosTests,
|
|
}:
|
|
|
|
let
|
|
version = "6.0.7";
|
|
rubyEnv = bundlerEnv {
|
|
name = "redmine-env-${version}";
|
|
|
|
inherit ruby_3_3;
|
|
gemdir = ./.;
|
|
groups = [
|
|
"development"
|
|
"ldap"
|
|
"markdown"
|
|
"common_mark"
|
|
"minimagick"
|
|
"test"
|
|
];
|
|
};
|
|
in
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "redmine";
|
|
inherit version;
|
|
|
|
src = fetchurl {
|
|
url = "https://www.redmine.org/releases/redmine-${finalAttrs.version}.tar.gz";
|
|
hash = "sha256-iCRWCgdnPce1nxygv5182FTGxMl9D+VVpdvrozK43+g=";
|
|
};
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
buildInputs = [
|
|
rubyEnv
|
|
rubyEnv.wrappedRuby
|
|
rubyEnv.bundler
|
|
];
|
|
|
|
# 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 ];
|
|
|
|
buildPhase = ''
|
|
mv config config.dist
|
|
mv themes themes.dist
|
|
'';
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin $out/share
|
|
cp -r . $out/share/redmine
|
|
mkdir $out/share/redmine/public/assets
|
|
for i in config files log plugins public/assets public/plugin_assets themes tmp; do
|
|
rm -rf $out/share/redmine/$i
|
|
ln -fs /run/redmine/$i $out/share/redmine/$i
|
|
done
|
|
|
|
makeWrapper ${rubyEnv.wrappedRuby}/bin/ruby $out/bin/rdm-mailhandler.rb --add-flags $out/share/redmine/extra/mail_handler/rdm-mailhandler.rb
|
|
'';
|
|
|
|
passthru.tests.redmine = nixosTests.redmine;
|
|
|
|
meta = with lib; {
|
|
homepage = "https://www.redmine.org/";
|
|
changelog = "https://www.redmine.org/projects/redmine/wiki/changelog";
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [
|
|
aanderse
|
|
felixsinger
|
|
megheaiulian
|
|
];
|
|
license = licenses.gpl2;
|
|
};
|
|
})
|