17 lines
459 B
Nix
17 lines
459 B
Nix
args @ { fetchurl, ... }:
|
|
rec {
|
|
baseName = ''babel-streams'';
|
|
version = ''babel-20150608-git'';
|
|
|
|
description = ''Some useful streams based on Babel's encoding code'';
|
|
|
|
deps = [ args."alexandria" args."babel" args."trivial-gray-streams" ];
|
|
|
|
src = fetchurl {
|
|
url = ''http://beta.quicklisp.org/archive/babel/2015-06-08/babel-20150608-git.tgz'';
|
|
sha256 = ''0nv2w7k33rwc4dwi33ay2rkmvnj4vsz9ar27z8fiar34895vndk5'';
|
|
};
|
|
|
|
overrides = x: {
|
|
};
|
|
}
|