about summary refs log tree commit diff
path: root/pkgs/development/libraries
diff options
context:
space:
mode:
authorJoachim Fasting <joachifm@fastmail.fm>2015-03-24 20:37:28 +0100
committerJoachim Fasting <joachifm@fastmail.fm>2015-03-24 20:39:25 +0100
commita64d43b96de66a24f48d7f45d03d796996035560 (patch)
treee80d737ccc2d229f26d1aa22f83a352236e08103 /pkgs/development/libraries
parenta869c8351cfcd6ec42147e7f1c8f4f14ac20e587 (diff)
downloadnixlib-a64d43b96de66a24f48d7f45d03d796996035560.tar
nixlib-a64d43b96de66a24f48d7f45d03d796996035560.tar.gz
nixlib-a64d43b96de66a24f48d7f45d03d796996035560.tar.bz2
nixlib-a64d43b96de66a24f48d7f45d03d796996035560.tar.lz
nixlib-a64d43b96de66a24f48d7f45d03d796996035560.tar.xz
nixlib-a64d43b96de66a24f48d7f45d03d796996035560.tar.zst
nixlib-a64d43b96de66a24f48d7f45d03d796996035560.zip
Delete redundant clppcre expression
The top-level name clppcre has no reverse dependencies, is out-of-date, and
appears to have been superceded by lispPackages.cl-ppcre.
Diffstat (limited to 'pkgs/development/libraries')
-rw-r--r--pkgs/development/libraries/cl-ppcre/default.nix26
1 files changed, 0 insertions, 26 deletions
diff --git a/pkgs/development/libraries/cl-ppcre/default.nix b/pkgs/development/libraries/cl-ppcre/default.nix
deleted file mode 100644
index b81896d88944..000000000000
--- a/pkgs/development/libraries/cl-ppcre/default.nix
+++ /dev/null
@@ -1,26 +0,0 @@
-args :  
-let 
-  lib = args.lib;
-  fetchurl = args.fetchurl;
-  simplyShare = args.simplyShare;
-
-  version = lib.attrByPath ["version"] "2.0.0" args; 
-  buildInputs = with args; [ ];
-in
-rec {
-  src = fetchurl {
-    url = http://weitz.de/files/cl-ppcre.tar.gz;
-    sha256 = "1hrk051yi1qixy0vdig99cbv0v0p825acli65s08yz99b0pjz7m5";
-  };
-
-  inherit buildInputs;
-  configureFlags = [];
-
-  /* doConfigure should be specified separately */
-  phaseNames = [(simplyShare "cl-ppcre")];
-      
-  name = "cl-ppcre-" + version;
-  meta = {
-    description = "Common Lisp Portable Perl Compatible RegExp library";
-  };
-}