mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 19:15:39 +00:00
593e11fd94
According to https://repology.org/repository/nix_unstable/problems, we have a lot of packages that have http links that redirect to https as their homepage. This commit updates all these packages to use the https links as their homepage. The following script was used to make these updates: ``` curl https://repology.org/api/v1/repository/nix_unstable/problems \ | jq '.[] | .problem' -r \ | rg 'Homepage link "(.+)" is a permanent redirect to "(.+)" and should be updated' --replace 's@$1@$2@' \ | sort | uniq > script.sed find -name '*.nix' | xargs -P4 -- sed -f script.sed -i ```
45 lines
1.1 KiB
Nix
45 lines
1.1 KiB
Nix
{ stdenv, fetchurl, bundlerEnv, ruby }:
|
|
|
|
let
|
|
version = "4.1.0";
|
|
rubyEnv = bundlerEnv {
|
|
name = "redmine-env-${version}";
|
|
|
|
inherit ruby;
|
|
gemdir = ./.;
|
|
groups = [ "ldap" "openid" ];
|
|
};
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
pname = "redmine";
|
|
inherit version;
|
|
|
|
src = fetchurl {
|
|
url = "https://www.redmine.org/releases/${pname}-${version}.tar.gz";
|
|
sha256 = "1fxc0xql54cfvj4g8v31vsv19jbij326qkgdz2h5xlp09r821wli";
|
|
};
|
|
|
|
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 = https://www.redmine.org/;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.aanderse ];
|
|
license = licenses.gpl2;
|
|
};
|
|
}
|