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

  description = ''A library to allow jQuery-like HTML/DOM manipulation.'';

  deps = [ args."array-utils" args."clss" args."form-fiddle" args."plump" ];

  src = fetchurl {
    url = ''http://beta.quicklisp.org/archive/lquery/2016-09-29/lquery-20160929-git.tgz'';
    sha256 = ''1kqc0n4zh44yay9vbv6wirk3122q7if2999146lrgada5fy17r7x'';
  };

  overrides = x: {
  };
}