git-ftp: init at 1.4.0
This commit is contained in:
parent
01c3847b9c
commit
14f2083445
@ -561,6 +561,7 @@
|
|||||||
tv = "Tomislav Viljetić <tv@shackspace.de>";
|
tv = "Tomislav Viljetić <tv@shackspace.de>";
|
||||||
tvestelind = "Tomas Vestelind <tomas.vestelind@fripost.org>";
|
tvestelind = "Tomas Vestelind <tomas.vestelind@fripost.org>";
|
||||||
tvorog = "Marsel Zaripov <marszaripov@gmail.com>";
|
tvorog = "Marsel Zaripov <marszaripov@gmail.com>";
|
||||||
|
tweber = "Thorsten Weber <tw+nixpkgs@360vier.de>";
|
||||||
twey = "James ‘Twey’ Kay <twey@twey.co.uk>";
|
twey = "James ‘Twey’ Kay <twey@twey.co.uk>";
|
||||||
uralbash = "Svintsov Dmitry <root@uralbash.ru>";
|
uralbash = "Svintsov Dmitry <root@uralbash.ru>";
|
||||||
utdemir = "Utku Demir <me@utdemir.com>";
|
utdemir = "Utku Demir <me@utdemir.com>";
|
||||||
|
27
pkgs/development/tools/git-ftp/default.nix
Normal file
27
pkgs/development/tools/git-ftp/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
@ -2066,6 +2066,8 @@ with pkgs;
|
|||||||
|
|
||||||
git-lfs = callPackage ../applications/version-management/git-lfs { };
|
git-lfs = callPackage ../applications/version-management/git-lfs { };
|
||||||
|
|
||||||
|
git-ftp = callPackage ../development/tools/git-ftp { };
|
||||||
|
|
||||||
git-series = callPackage ../development/tools/git-series { };
|
git-series = callPackage ../development/tools/git-series { };
|
||||||
|
|
||||||
git-up = callPackage ../applications/version-management/git-up { };
|
git-up = callPackage ../applications/version-management/git-up { };
|
||||||
|
Loading…
Reference in New Issue
Block a user