repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git]
/
pkgs
/
development
/
beam-modules
/
build-hex.nix
blob
1ebe3760ec8d4ef1997af41f2b128821be754045
1
{ lib, buildRebar3, fetchHex }:
2
3
{ name, version, sha256
4
, builder ? buildRebar3
5
, hexPkg ? name
6
, ... }@attrs:
7
8
with lib;
9
10
let
11
pkg = self: builder (attrs // {
12
13
src = fetchHex {
14
pkg = hexPkg;
15
inherit version;
16
inherit sha256;
17
};
18
});
19
in
20
fix pkg