about summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorCarles Pagès <page@ruiec.cat>2017-01-20 13:03:31 +0100
committerCarles Pagès <page@ruiec.cat>2017-01-20 16:55:30 +0100
commit305e3e27b6a5346d24fd8cdbf71667245707bbb0 (patch)
tree7fc30f8c8ed8c9cdb5c95dac65a630cde7622153 /pkgs/applications
parentfd400ced6b003b222e64b7bf2ff2bcca1a93c5b9 (diff)
downloadnixlib-305e3e27b6a5346d24fd8cdbf71667245707bbb0.tar
nixlib-305e3e27b6a5346d24fd8cdbf71667245707bbb0.tar.gz
nixlib-305e3e27b6a5346d24fd8cdbf71667245707bbb0.tar.bz2
nixlib-305e3e27b6a5346d24fd8cdbf71667245707bbb0.tar.lz
nixlib-305e3e27b6a5346d24fd8cdbf71667245707bbb0.tar.xz
nixlib-305e3e27b6a5346d24fd8cdbf71667245707bbb0.tar.zst
nixlib-305e3e27b6a5346d24fd8cdbf71667245707bbb0.zip
yafc: remove
Some things are broken and it's no longer maintained.
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/networking/yafc/default.nix19
1 files changed, 0 insertions, 19 deletions
diff --git a/pkgs/applications/networking/yafc/default.nix b/pkgs/applications/networking/yafc/default.nix
deleted file mode 100644
index 67c1b11e1693..000000000000
--- a/pkgs/applications/networking/yafc/default.nix
+++ /dev/null
@@ -1,19 +0,0 @@
-{stdenv, fetchurl, readline, libssh, intltool, libbsd, pkgconfig}:
-
-stdenv.mkDerivation rec {
-  name = "yafc-1.3.6";
-  src = fetchurl {
-    url = "http://www.yafc-ftp.com/downloads/${name}.tar.xz";
-    sha256 = "0wvrljihliggysfnzczc0s74i3ab2c1kzjjs99iqk98nxmb2b8v3";
-  };
-
-  buildInputs = [ readline libssh intltool libbsd pkgconfig ];
-
-  meta = {
-    description = "ftp/sftp client with readline, autocompletion and bookmarks";
-    homepage = http://www.yafc-ftp.com;
-    maintainers = [ stdenv.lib.maintainers.cpages ];
-    license = stdenv.lib.licenses.gpl2Plus;
-    platforms = stdenv.lib.platforms.linux;
-  };
-}