summary refs log tree commit diff
path: root/pkgs/applications/networking/ftp
diff options
context:
space:
mode:
authorworldofpeace <worldofpeace@users.noreply.github.com>2018-09-08 04:28:54 -0400
committerworldofpeace <worldofpeace@users.noreply.github.com>2018-09-09 18:34:31 -0400
commit38659741779ce821dd765c7a0b9d7f8a0c016f71 (patch)
treef7c1e185d04fe10830f6120ba5dcad54b40b94d6 /pkgs/applications/networking/ftp
parent59821548f09724f115592803aef0a4d7331ea2df (diff)
downloadnixpkgs-38659741779ce821dd765c7a0b9d7f8a0c016f71.tar
nixpkgs-38659741779ce821dd765c7a0b9d7f8a0c016f71.tar.gz
nixpkgs-38659741779ce821dd765c7a0b9d7f8a0c016f71.tar.bz2
nixpkgs-38659741779ce821dd765c7a0b9d7f8a0c016f71.tar.lz
nixpkgs-38659741779ce821dd765c7a0b9d7f8a0c016f71.tar.xz
nixpkgs-38659741779ce821dd765c7a0b9d7f8a0c016f71.tar.zst
nixpkgs-38659741779ce821dd765c7a0b9d7f8a0c016f71.zip
taxi: init at 0.0.1
Diffstat (limited to 'pkgs/applications/networking/ftp')
-rw-r--r--pkgs/applications/networking/ftp/taxi/default.nix47
1 files changed, 47 insertions, 0 deletions
diff --git a/pkgs/applications/networking/ftp/taxi/default.nix b/pkgs/applications/networking/ftp/taxi/default.nix
new file mode 100644
index 00000000000..503b685ce28
--- /dev/null
+++ b/pkgs/applications/networking/ftp/taxi/default.nix
@@ -0,0 +1,47 @@
+{ stdenv, fetchFromGitHub, vala, pkgconfig, meson, ninja, python3, granite
+, gtk3, gnome3, libsoup, libsecret, gobjectIntrospection, wrapGAppsHook }:
+
+stdenv.mkDerivation rec {
+  pname = "taxi";
+  version = "0.0.1";
+
+  name = "${pname}-${version}";
+
+  src = fetchFromGitHub {
+    owner = "Alecaddd";
+    repo = pname;
+    rev = "v${version}";
+    sha256 = "01c552w68576pnsyqbwy3hjhbww6vys3r3s0wxjdiscjqj1aawqg";
+  };
+
+  nativeBuildInputs = [
+    gobjectIntrospection
+    meson
+    ninja
+    pkgconfig
+    python3
+    vala
+    wrapGAppsHook
+  ];
+
+  buildInputs = [
+    gnome3.libgee
+    granite
+    gtk3
+    libsecret
+    libsoup
+  ];
+
+  postPatch = ''
+    chmod +x meson/post_install.py
+    patchShebangs meson/post_install.py
+  '';
+
+  meta = with stdenv.lib; {
+    description = "The FTP Client that drives you anywhere";
+    homepage    = https://github.com/Alecaddd/taxi;
+    license     = licenses.gpl3Plus;
+    maintainers = with maintainers; [ worldofpeace ];
+    platforms   = platforms.linux;
+  };
+}