mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 11:53:27 +00:00
9a624d10e3
Since theey is not active from at least six years. All the packages on this commit became orphans. --------------------------------------------------------------------------- There are files not covered by this commit, because they will be adopted soon. Namely: - pkgs/by-name/zs/zsync/package.nix - pkgs/games/bsdgames/default.nix - pkgs/misc/ghostscript/default.nix - pkgs/os-specific/linux/kernel/perf/default.nix - pkgs/tools/system/logrotate/default.nix
59 lines
1.1 KiB
Nix
59 lines
1.1 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, autoreconfHook
|
|
, wxGTK32
|
|
, subversion
|
|
, apr
|
|
, aprutil
|
|
, python3
|
|
, darwin
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "rapidsvn";
|
|
version = "unstable-2021-08-02";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "RapidSVN";
|
|
repo = "RapidSVN";
|
|
rev = "3a564e071c3c792f5d733a9433b9765031f8eed0";
|
|
hash = "sha256-6bQTHAOZAP+06kZDHjDx9VnGm4vrZUDyLHZdTpiyP08=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace configure.ac \
|
|
--replace "[3.0.*]" "[3.*]"
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
];
|
|
|
|
buildInputs = [
|
|
wxGTK32
|
|
subversion
|
|
apr
|
|
aprutil
|
|
python3
|
|
] ++ lib.optionals stdenv.isDarwin [
|
|
darwin.apple_sdk.frameworks.Cocoa
|
|
];
|
|
|
|
configureFlags = [
|
|
"--with-svn-include=${subversion.dev}/include"
|
|
"--with-svn-lib=${subversion.out}/lib"
|
|
];
|
|
|
|
env.NIX_CFLAGS_COMPILE = "-std=c++14";
|
|
|
|
meta = {
|
|
description = "Multi-platform GUI front-end for the Subversion revision system";
|
|
homepage = "http://rapidsvn.tigris.org/";
|
|
license = lib.licenses.gpl3Plus;
|
|
maintainers = [ ];
|
|
platforms = lib.platforms.unix;
|
|
mainProgram = "rapidsvn";
|
|
};
|
|
}
|