8e65f7f0cc
GitOrigin-RevId: 062a0c5437b68f950b081bbfc8a699d57a4ee026
27 lines
858 B
Nix
27 lines
858 B
Nix
{ lib, stdenv, fetchurl, unzip, makeWrapper, jre }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "subgit";
|
|
version = "3.3.13";
|
|
|
|
meta = {
|
|
description = "A tool for a smooth, stress-free SVN to Git migration";
|
|
longDescription = "Create writable Git mirror of a local or remote Subversion repository and use both Subversion and Git as long as you like. You may also do a fast one-time import from Subversion to Git.";
|
|
homepage = "https://subgit.com";
|
|
license = lib.licenses.unfree;
|
|
platforms = lib.platforms.all;
|
|
};
|
|
|
|
nativeBuildInputs = [ unzip makeWrapper ];
|
|
|
|
installPhase = ''
|
|
mkdir $out;
|
|
cp -r bin lib $out;
|
|
wrapProgram $out/bin/subgit --set JAVA_HOME ${jre};
|
|
'';
|
|
|
|
src = fetchurl {
|
|
url = "https://subgit.com/download/subgit-${version}.zip";
|
|
sha256 = "sha256-+sG7yD2aVLV9i7iPZTMMsY1CQ1VuJ8w+jPguuTulR8c=";
|
|
};
|
|
}
|