4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
52 lines
1.5 KiB
Nix
52 lines
1.5 KiB
Nix
{ lib, stdenv, fetchurl, bundlerEnv, ruby, makeWrapper }:
|
|
|
|
let
|
|
version = "4.1.1";
|
|
rubyEnv = bundlerEnv {
|
|
name = "redmine-env-${version}";
|
|
|
|
inherit ruby;
|
|
gemdir = ./.;
|
|
groups = [ "development" "ldap" "markdown" "minimagick" "openid" "test" ];
|
|
};
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
pname = "redmine";
|
|
inherit version;
|
|
|
|
src = fetchurl {
|
|
url = "https://www.redmine.org/releases/${pname}-${version}.tar.gz";
|
|
sha256 = "1nndy5hz8zvfglxf1f3bsb1pkrfwinfxzkdan1vjs3rkckkszyh5";
|
|
};
|
|
|
|
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
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://www.redmine.org/";
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.aanderse ];
|
|
license = licenses.gpl2;
|
|
};
|
|
}
|