3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #24519 from orivej/subgit

subgit: 3.1.0 -> 3.2.4
This commit is contained in:
ndowens 2017-04-02 09:16:28 -05:00 committed by GitHub
commit 2c5b491ca9

View file

@ -1,7 +1,7 @@
{ stdenv, fetchurl, unzip, makeWrapper, jre }:
stdenv.mkDerivation {
name = "subgit-3.1.0";
stdenv.mkDerivation rec {
name = "subgit-3.2.4";
meta = {
description = "A tool for a smooth, stress-free SVN to Git migration";
@ -11,7 +11,7 @@ stdenv.mkDerivation {
platforms = stdenv.lib.platforms.all;
};
buildInputs = [ unzip makeWrapper ];
nativeBuildInputs = [ unzip makeWrapper ];
installPhase = ''
mkdir $out;
@ -20,7 +20,7 @@ stdenv.mkDerivation {
'';
src = fetchurl {
url = http://old.subgit.com/download/subgit-3.1.0.zip;
sha256 = "08qhpg6y2ziwplm0z1ghh1wfp607sw4hyb53a7qzfn759j5kcdrg";
url = "http://subgit.com/download/${name}.zip";
sha256 = "13r6hi2zk46bs3j17anfc85kszlwliv2yc16qx834b3v4w68hajw";
};
}