mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
27 lines
831 B
Nix
27 lines
831 B
Nix
{ lib, stdenv, fetchurl, unzip, makeWrapper, jre }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "subgit-3.3.11";
|
|
|
|
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 = "http://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/${name}.zip";
|
|
sha256 = "sha256-ltTpmXPCIGTmVDxKc6oelMEzQWXRbIf0NESzRugaXo0=";
|
|
};
|
|
}
|