mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-25 23:23:07 +00:00
18 lines
380 B
Nix
18 lines
380 B
Nix
args @ { fetchurl, ... }:
|
|
rec {
|
|
baseName = ''woo'';
|
|
version = ''20170227-git'';
|
|
|
|
description = ''An asynchronous HTTP server written in Common Lisp'';
|
|
|
|
deps = [ ];
|
|
|
|
src = fetchurl {
|
|
url = ''http://beta.quicklisp.org/archive/woo/2017-02-27/woo-20170227-git.tgz'';
|
|
sha256 = ''0myydz817mpkgs97p9y9n4z0kq00xxr2b65klsdkxasvvfyjw0d1'';
|
|
};
|
|
|
|
overrides = x: {
|
|
};
|
|
}
|