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

  description = ''cl-paths: vectorial paths manipulation'';

  deps = [ args."cl-aa" args."cl-paths" ];

  src = fetchurl {
    url = ''http://beta.quicklisp.org/archive/cl-vectors/2015-04-07/cl-vectors-20150407-git.tgz'';
    sha256 = ''1qd7ywc2ayiyd5nw7shnjgh0nc14h328h0cw921g5b2n8j6y959w'';
  };

  overrides = x: {
  };
}