summary refs log tree commit diff
path: root/pkgs/development/lisp-modules/quicklisp-to-nix-output/jonathan.nix
blob: 055d9eebc232bfe21f4c9347357770596b781dec (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
args @ { fetchurl, ... }:
rec {
  baseName = ''jonathan'';
  version = ''20170124-git'';

  description = ''High performance JSON encoder and decoder. Currently support: SBCL, CCL.'';

  deps = [ args."babel" args."cl-annot" args."cl-ppcre" args."cl-syntax" args."cl-syntax-annot" args."fast-io" args."proc-parse" args."trivial-types" ];

  src = fetchurl {
    url = ''http://beta.quicklisp.org/archive/jonathan/2017-01-24/jonathan-20170124-git.tgz'';
    sha256 = ''1r54w7i1fxaqz6q7idamcy3bvsg0pvfjcs2qq4dag519zwcpln5l'';
  };

  overrides = x: {
  };
}