mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
Merge pull request #6971 from joachifm/remove-redundant-clppcre
Delete redundant clppcre expression
This commit is contained in:
commit
6f025832b5
2 changed files with 0 additions and 28 deletions
|
@ -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";
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -5481,8 +5481,6 @@ let
|
||||||
|
|
||||||
cln = callPackage ../development/libraries/cln { };
|
cln = callPackage ../development/libraries/cln { };
|
||||||
|
|
||||||
clppcre = builderDefsPackage (import ../development/libraries/cl-ppcre) { };
|
|
||||||
|
|
||||||
clucene_core_2 = callPackage ../development/libraries/clucene-core/2.x.nix { };
|
clucene_core_2 = callPackage ../development/libraries/clucene-core/2.x.nix { };
|
||||||
|
|
||||||
clucene_core_1 = callPackage ../development/libraries/clucene-core { };
|
clucene_core_1 = callPackage ../development/libraries/clucene-core { };
|
||||||
|
|
Loading…
Reference in a new issue