2018-07-20 17:44:44 -07:00
|
|
|
{ stdenv, fetchFromGitHub, pandoc, man }:
|
2017-07-07 02:41:30 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "git-ftp";
|
2020-02-05 23:33:54 -08:00
|
|
|
version = "1.6.0";
|
2017-07-07 02:41:30 -07:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "git-ftp";
|
|
|
|
repo = "git-ftp";
|
|
|
|
rev = version;
|
2020-02-05 23:33:54 -08:00
|
|
|
sha256 = "1hxkqf7jbrx24q18yxpnd3dxzh4xk6asymwkylp1x7zg6mcci87d";
|
2017-07-07 02:41:30 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
dontBuild = true;
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
make install-all prefix=$out
|
|
|
|
'';
|
|
|
|
|
|
|
|
buildInputs = [pandoc man];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2020-10-10 22:55:05 -07:00
|
|
|
description = "Git powered FTP client written as shell script";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://git-ftp.github.io/";
|
2017-07-07 02:41:30 -07:00
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = with maintainers; [ tweber ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|