about summary refs log tree commit diff
path: root/pkgs/development/tools/git-ftp
diff options
context:
space:
mode:
authorThorsten Weber <tw@360vier.de>2017-07-07 11:41:30 +0200
committerThorsten Weber <tw@360vier.de>2017-07-07 11:41:30 +0200
commit14f20834454215c311b48a6932ca8a0f1c57e3a3 (patch)
treea77a5ba49858b8d4b2be9376bfd8e74835bae058 /pkgs/development/tools/git-ftp
parent01c3847b9c656d3829dd947395aacd0f84178eb2 (diff)
downloadnixlib-14f20834454215c311b48a6932ca8a0f1c57e3a3.tar
nixlib-14f20834454215c311b48a6932ca8a0f1c57e3a3.tar.gz
nixlib-14f20834454215c311b48a6932ca8a0f1c57e3a3.tar.bz2
nixlib-14f20834454215c311b48a6932ca8a0f1c57e3a3.tar.lz
nixlib-14f20834454215c311b48a6932ca8a0f1c57e3a3.tar.xz
nixlib-14f20834454215c311b48a6932ca8a0f1c57e3a3.tar.zst
nixlib-14f20834454215c311b48a6932ca8a0f1c57e3a3.zip
git-ftp: init at 1.4.0
Diffstat (limited to 'pkgs/development/tools/git-ftp')
-rw-r--r--pkgs/development/tools/git-ftp/default.nix27
1 files changed, 27 insertions, 0 deletions
diff --git a/pkgs/development/tools/git-ftp/default.nix b/pkgs/development/tools/git-ftp/default.nix
new file mode 100644
index 000000000000..b4bc680a19aa
--- /dev/null
+++ b/pkgs/development/tools/git-ftp/default.nix
@@ -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;
+  };
+}