Merge pull request #27177 from tw-360vier/git-ftp

git-ftp: init at 1.4.0
This commit is contained in:
Jörg Thalheim 2017-07-07 15:45:08 +01:00 committed by GitHub
commit 515d5d577b
3 changed files with 30 additions and 0 deletions

View File

@ -565,6 +565,7 @@
tv = "Tomislav Viljetić <tv@shackspace.de>";
tvestelind = "Tomas Vestelind <tomas.vestelind@fripost.org>";
tvorog = "Marsel Zaripov <marszaripov@gmail.com>";
tweber = "Thorsten Weber <tw+nixpkgs@360vier.de>";
twey = "James Twey Kay <twey@twey.co.uk>";
uralbash = "Svintsov Dmitry <root@uralbash.ru>";
utdemir = "Utku Demir <me@utdemir.com>";

View File

@ -0,0 +1,27 @@
{ lib, stdenv, fetchFromGitHub, pandoc, man }:
stdenv.mkDerivation rec {
name = "git-ftp-${version}";
version = "1.4.0";
src = fetchFromGitHub {
owner = "git-ftp";
repo = "git-ftp";
rev = version;
sha256 = "0n8q1azamf10qql8f8c4ppbd3iisy460gwxx09v5d9hji5md27s3";
};
dontBuild = true;
installPhase = ''
make install-all prefix=$out
'';
buildInputs = [pandoc man];
meta = with stdenv.lib; {
description = "Git powered FTP client written as shell script.";
homepage = https://git-ftp.github.io/;
license = licenses.gpl3;
maintainers = with maintainers; [ tweber ];
platforms = platforms.unix;
};
}

View File

@ -2067,6 +2067,8 @@ with pkgs;
git-lfs = callPackage ../applications/version-management/git-lfs { };
git-ftp = callPackage ../development/tools/git-ftp { };
git-series = callPackage ../development/tools/git-series { };
git-up = callPackage ../applications/version-management/git-up { };