about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/bashup-events/3.2.nix
blob: f7e88c3825110caccee2048e645ced853b62ba58 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ callPackage, fetchFromGitHub }:

callPackage ./generic.nix {
  variant = "3.2";
  version = "2019-07-27";
  branch = "master";
  src = fetchFromGitHub {
    owner = "bashup";
    repo = "events";
    rev = "83744c21bf720afb8325343674c62ab46a8f3d94";
    hash = "sha256-0VDjd+1T1JBmSDGovWOOecUZmNztlwG32UcstfdigbI=";
  };
  fake = {
    # Note: __ev.encode is actually defined, but it happens in a
    # quoted arg to eval, which resholve currently doesn't (and may
    # never) parse into. See abathur/resholve/issues/2.
    function = [ "__ev.encode" ];
  };
  keep = {
    # allow vars in eval
    eval = [ "e" "f" "q" "r" ];
    # allow vars executed as commands
    "$f" = true;
    "$n" = true;
  };
}