mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 23:43:30 +00:00
Merge pull request #27177 from tw-360vier/git-ftp
git-ftp: init at 1.4.0
This commit is contained in:
commit
515d5d577b
@ -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>";
|
||||
|
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;
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user