Skip to content

Commit

Permalink
subversion-client: remove appendToName to have a consistent package n…
Browse files Browse the repository at this point in the history
…ame for repology
  • Loading branch information
Stunkymonkey authored and FRidh committed Apr 6, 2022
1 parent 0e29650 commit 7eb1a32
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions pkgs/applications/version-management/subversion/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ let

common = { version, sha256, extraPatches ? [ ] }: stdenv.mkDerivation (rec {
inherit version;
pname = "subversion";
pname = "subversion${lib.optionalString (!bdbSupport && perlBindings && pythonBindings) "-client"}";

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

Expand Down
4 changes: 2 additions & 2 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -29273,11 +29273,11 @@ with pkgs;
inherit (callPackages ../applications/version-management/subversion { sasl = cyrus_sasl; })
subversion_1_10 subversion;

subversionClient = appendToName "client" (subversion.override {
subversionClient = subversion.override {
bdbSupport = false;
perlBindings = true;
pythonBindings = true;
});
};

sublime-music = callPackage ../applications/audio/sublime-music { };

Expand Down

0 comments on commit 7eb1a32

Please sign in to comment.