mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-18 11:44:07 +00:00
20 lines
459 B
Nix
20 lines
459 B
Nix
|
args @ { fetchurl, ... }:
|
||
|
rec {
|
||
|
baseName = ''cl-unification'';
|
||
|
version = ''20170124-git'';
|
||
|
|
||
|
description = ''The CL-UNIFICATION system.
|
||
|
|
||
|
The system contains the definitions for the 'unification' machinery.'';
|
||
|
|
||
|
deps = [ ];
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = ''http://beta.quicklisp.org/archive/cl-unification/2017-01-24/cl-unification-20170124-git.tgz'';
|
||
|
sha256 = ''0gwk40y5byg6q0hhd41rqf8g8i1my0h4lshc63xfnh3mfgcc8bx9'';
|
||
|
};
|
||
|
|
||
|
overrides = x: {
|
||
|
};
|
||
|
}
|