summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorRobin Gloster <mail@glob.in>2017-04-29 12:22:11 +0200
committerRobin Gloster <mail@glob.in>2017-08-04 04:14:03 +0200
commit7786767beafcf8d249b36976501d62f00c0cd354 (patch)
tree9e43239795624bf61c440f88db1ea55fddd0c927 /pkgs/development
parent329eec441bcb92e22395d3493168b8f8ecba1148 (diff)
downloadnixlib-7786767beafcf8d249b36976501d62f00c0cd354.tar
nixlib-7786767beafcf8d249b36976501d62f00c0cd354.tar.gz
nixlib-7786767beafcf8d249b36976501d62f00c0cd354.tar.bz2
nixlib-7786767beafcf8d249b36976501d62f00c0cd354.tar.lz
nixlib-7786767beafcf8d249b36976501d62f00c0cd354.tar.xz
nixlib-7786767beafcf8d249b36976501d62f00c0cd354.tar.zst
nixlib-7786767beafcf8d249b36976501d62f00c0cd354.zip
ccnx: remove
upstream has been replaced by another project, doesn't build with
openssl 1.1 and is not used elsewhere in nixpkgs

See https://github.com/ProjectCCNx/ccnx
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/libraries/ccnx/default.nix38
1 files changed, 0 insertions, 38 deletions
diff --git a/pkgs/development/libraries/ccnx/default.nix b/pkgs/development/libraries/ccnx/default.nix
deleted file mode 100644
index 4634a80ade61..000000000000
--- a/pkgs/development/libraries/ccnx/default.nix
+++ /dev/null
@@ -1,38 +0,0 @@
-{ stdenv, fetchurl, openssl, expat, libpcap }:
-let
-  version = "0.8.2";
-in
-stdenv.mkDerivation {
-  name = "ccnx-${version}";
-  src = fetchurl {
-    url = "https://github.com/ProjectCCNx/ccnx/archive/ccnx-${version}.tar.gz";
-    sha256 = "1jyk7i8529821aassxbvzlxnvl5ly0na1qcn3v1jpxhdd0qqpg00";
-  };
-  buildInputs = [ openssl expat libpcap ];
-  preConfigure = ''
-    mkdir -p $out/include
-    mkdir -p $out/lib
-    mkdir -p $out/bin
-    substituteInPlace csrc/configure --replace "/usr/local" $out --replace "/usr/bin/env sh" "/bin/sh"
-  '';
-  meta = with stdenv.lib; {
-    homepage = http://www.ccnx.org/;
-    description = "A Named Data Neworking (NDN) or Content Centric Networking (CCN) abstraction";
-    longDescription = ''
-      To address the Internet’s modern-day requirements with a better
-      fitting model, PARC has created a new networking architecture
-      called Content-Centric Networking (CCN), which operates by addressing
-      and delivering Content Objects directly by Name instead of merely
-      addressing network end-points. In addition, the CCN security model
-      explicitly secures individual Content Objects rather than securing
-      the connection or “pipe”. Named and secured content resides in
-      distributed caches automatically populated on demand or selectively
-      pre-populated. When requested by name, CCN delivers named content to
-      the user from the nearest cache, thereby traversing fewer network hops,
-      eliminating redundant requests, and consuming less resources overall.
-    '';
-    license = licenses.gpl2;
-    platforms = stdenv.lib.platforms.unix;
-    maintainers = [ maintainers.sjmackenzie ];
-  };
-}