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

45 lines
1.1 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, bundlerEnv, ruby }:
2014-10-07 08:52:45 +00:00
let
2019-10-22 01:09:56 +00:00
version = "4.0.4";
rubyEnv = bundlerEnv {
name = "redmine-env-${version}";
2014-10-07 08:52:45 +00:00
inherit ruby;
gemdir = ./.;
groups = [ "ldap" "openid" ];
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 {
2019-08-13 21:52:01 +00:00
url = "https://www.redmine.org/releases/${pname}-${version}.tar.gz";
2019-10-22 01:09:56 +00:00
sha256 = "0i5bmgdi3mahbis9hn0hk53rnz4ihp9yij4b4i07ny9vf3n4kp1a";
};
buildInputs = [ rubyEnv rubyEnv.wrappedRuby rubyEnv.bundler ];
buildPhase = ''
mv config config.dist
mv public/themes public/themes.dist
'';
installPhase = ''
mkdir -p $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
'';
meta = with stdenv.lib; {
homepage = http://www.redmine.org/;
platforms = platforms.linux;
maintainers = [ maintainers.aanderse ];
license = licenses.gpl2;
};
2019-01-30 12:37:24 +00:00
}