summaryrefslogtreecommitdiffstats
path: root/pkgs/development/beam-modules/pc/default.nix
blob: 4d172824e929d013d667e587c9429587a33d642d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
  lib,
  fetchHex,
  buildRebar3,
}:

buildRebar3 rec {
  name = "pc";
  version = "1.15.0";

  src = fetchHex {
    pkg = name;
    inherit version;
    sha256 = "sha256-TA+tT2Q3yuNT1RfaIY/ng0e4/6RLmBeIdJTKquVFlbM=";
  };

  meta = {
    description = "Rebar3 port compiler for native code";
    license = lib.licenses.mit;
    homepage = "https://github.com/blt/port_compiler";
  };
}