nixpkgs/pkgs/applications/version-management/redmine/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

54 lines
1.6 KiB
Nix
Raw Normal View History

2023-05-18 08:19:43 +00:00
{ lib, stdenv, fetchurl, bundlerEnv, ruby, defaultGemConfig, makeWrapper, nixosTests }:
2014-10-07 08:52:45 +00:00
let
2023-05-18 08:19:43 +00:00
version = "5.0.5";
rubyEnv = bundlerEnv {
name = "redmine-env-${version}";
2014-10-07 08:52:45 +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
};
in
stdenv.mkDerivation rec {
2019-08-13 21:52:01 +00:00
pname = "redmine";
inherit version;
src = fetchurl {
url = "https://www.redmine.org/releases/${pname}-${version}.tar.gz";
2023-05-18 08:19:43 +00:00
sha256 = "sha256-qJrRxLub8CXmUnx3qxjI+vd0nJSpdcryz9u6AOsSpIE=";
};
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 public/themes public/themes.dist
'';
installPhase = ''
mkdir -p $out/bin $out/share
cp -r . $out/share/redmine
for i in config files log plugins public/plugin_assets public/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/";
platforms = platforms.linux;
2023-05-18 11:35:59 +00:00
maintainers = with maintainers; [ aanderse felixsinger megheaiulian ];
license = licenses.gpl2;
};
2019-01-30 12:37:24 +00:00
}