summary refs log tree commit diff
path: root/pkgs/development/libraries/cl-ppcre/default.nix
blob: 28c7ee0475bcf77a986dd185ca0d8bc6164891f1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
args :  
let 
  lib = args.lib;
  fetchurl = args.fetchurl;
  simplyShare = args.simplyShare;

  version = lib.getAttr ["version"] "2.0.0" args; 
  buildInputs = with args; [ ];
in
rec {
  src = fetchurl {
    url = http://weitz.de/files/cl-ppcre.tar.gz;
    sha256 = "10698b7cmap4hk1lmlsvx2adcgsni5gly98qpj19fsdgy9ic7dhv";
  };

  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";
  };
}