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

  description = ''marshal: Simple (de)serialization of Lisp datastructures.'';

  deps = [ ];

  src = fetchurl {
    url = ''http://beta.quicklisp.org/archive/cl-marshal/2017-01-24/cl-marshal-20170124-git.tgz'';
    sha256 = ''0z43m3jspl4c4fcbbxm58hxd9k69308pyijgj7grmq6mirkq664d'';
  };

  overrides = x: {
  };
}