Skip to content

Commit

Permalink
git-ftp: init at 1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tw-360vier committed Jul 7, 2017
1 parent 01c3847 commit 14f2083
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 0 deletions.
1 change: 1 addition & 0 deletions lib/maintainers.nix
Original file line number Diff line number Diff line change
Expand Up @@ -561,6 +561,7 @@
tv = "Tomislav Viljetić <[email protected]>";
tvestelind = "Tomas Vestelind <[email protected]>";
tvorog = "Marsel Zaripov <[email protected]>";
tweber = "Thorsten Weber <[email protected]>";
twey = "James ‘Twey’ Kay <[email protected]>";
uralbash = "Svintsov Dmitry <[email protected]>";
utdemir = "Utku Demir <[email protected]>";
Expand Down
27 changes: 27 additions & 0 deletions pkgs/development/tools/git-ftp/default.nix
Original file line number Diff line number Diff line change
@@ -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;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2066,6 +2066,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 { };
Expand Down

0 comments on commit 14f2083

Please sign in to comment.