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

  description = ''A very simple toolkit to help with lexing used mainly in Plump.'';

  deps = [ ];

  src = fetchurl {
    url = ''http://beta.quicklisp.org/archive/plump/2017-01-24/plump-20170124-git.tgz'';
    sha256 = ''1swl5kr6hgl7hkybixsx7h4ddc7c0a7pisgmmiz2bs2rv4inz69x'';
  };

  overrides = x: {
    postInstall = ''
        echo "$CL_SOURCE_REGISTRY"
        NIX_LISP_PRELAUNCH_HOOK='nix_lisp_run_single_form "(asdf:load-system :plump-lexer)"' "$out/bin/plump-lexer-lisp-launcher.sh" ""
    '';
  };
}