summary refs log tree commit diff
path: root/pkgs/development/erlang-modules/hex/meck.nix
blob: 5af8a15a908d2ce9b4a628c79ffda1250bf07fd9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ stdenv, buildHex }:

buildHex {
  name = "meck";
  version = "0.8.3";
  sha256 = "1dh2rhks1xly4f49x89vbhsk8fgwkx5zqp0n98mnng8rs1rkigak";

  meta = {
    description = "A mocking framework for Erlang";
    homepage = "https://github.com/eproxus/meck";
    license = stdenv.lib.licenses.apsl20;
  };
}