summaryrefslogtreecommitdiffstats
path: root/pkgs/tools
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2021-03-26 11:11:05 +0100
committerGitHub <noreply@github.com>2021-03-26 11:11:05 +0100
commit0708f10d37ba45bc1c7835fe3f6c065cdab994af (patch)
tree375ad562c3ba998fb3f93fb085c97aeb1d36794f /pkgs/tools
parentad7a9cdb96e86c3330a4bd0965f583f0eb7c61a9 (diff)
parentb0de354dcf1bc7ad1e8e43ddaf749114e3c61d94 (diff)
Merge pull request #117579 from dotlambda/ccnet-drop
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/networking/ccnet/default.nix27
1 files changed, 0 insertions, 27 deletions
diff --git a/pkgs/tools/networking/ccnet/default.nix b/pkgs/tools/networking/ccnet/default.nix
deleted file mode 100644
index 3293ebe25c83..000000000000
--- a/pkgs/tools/networking/ccnet/default.nix
+++ /dev/null
@@ -1,27 +0,0 @@
-{lib, stdenv, fetchurl, which, autoreconfHook, pkg-config, vala, python3, libsearpc, libzdb, libuuid, libevent, sqlite, openssl}:
-
-stdenv.mkDerivation rec {
- version = "6.1.8";
- seafileVersion = "6.1.8";
- pname = "ccnet";
-
- src = fetchurl {
- url = "https://github.com/haiwen/ccnet/archive/v${version}.tar.gz";
- sha256 = "0qlpnrz30ldrqnvbj59d54qdghxpxc5lsq6kf3dw2b93jnzkcmmm";
- };
-
- nativeBuildInputs = [ pkg-config which autoreconfHook vala python3 libsearpc ];
- propagatedBuildInputs = [ libsearpc libzdb libuuid libevent sqlite openssl ];
-
- configureFlags = [ "--enable-server" ];
-
- strictDeps = true;
-
- meta = with lib; {
- homepage = "https://github.com/haiwen/ccnet";
- description = "A framework for writing networked applications in C";
- license = licenses.gpl3Plus;
- platforms = platforms.linux;
- maintainers = [ ];
- };
-}