Skip to content

Commit

Permalink
Merge pull request #66439 from aanderse/subversion
Browse files Browse the repository at this point in the history
subversion: 1.9.10 -> 1.9.12, 1.10.4 -> 1.10.6
  • Loading branch information
aanderse authored Aug 13, 2019
2 parents 233b0af + ccf0499 commit 8746c77
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions pkgs/applications/version-management/subversion/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ let

common = { version, sha256, extraBuildInputs ? [ ] }: stdenv.mkDerivation (rec {
inherit version;
name = "subversion-${version}";
pname = "subversion";

src = fetchurl {
url = "mirror://apache/subversion/${name}.tar.bz2";
url = "mirror://apache/subversion/${pname}-${version}.tar.bz2";
inherit sha256;
};

Expand Down Expand Up @@ -98,7 +98,7 @@ let
meta = with stdenv.lib; {
description = "A version control system intended to be a compelling replacement for CVS in the open source community";
license = licenses.asl20;
homepage = http://subversion.apache.org/;
homepage = "http://subversion.apache.org/";
maintainers = with maintainers; [ eelco lovek323 ];
platforms = platforms.linux ++ platforms.darwin;
};
Expand All @@ -112,13 +112,13 @@ let

in {
subversion19 = common {
version = "1.9.10";
sha256 = "1mwwbjs8nqr8qyc0xzy7chnylh4q3saycvly8rzq32swadbcca5f";
version = "1.9.12";
sha256 = "15z33gdnfiqblm5515020wfdwnp2837r3hnparava6m2fgyiafiw";
};

subversion_1_10 = common {
version = "1.10.4";
sha256 = "18c1vdq32nil76w678lxmp73jsbqha3dmzgmfrj76nc0xjmywql2";
version = "1.10.6";
sha256 = "19zc215mhpnm92mlyl5jbv57r5zqp6cavr3s2g9yglp6j4kfgj0q";
extraBuildInputs = [ lz4 utf8proc ];
};

Expand Down

0 comments on commit 8746c77

Please sign in to comment.