summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/ocaml-ipaddr/default.nix
blob: e96f3f179a986d3070afd492b2425bd168ebf95d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ocaml, findlib, stdenv, fetchurl}:

stdenv.mkDerivation {
  name = "ocaml-ipaddr-2.4.0";
  
  src = fetchurl {
    url = https://github.com/mirage/ocaml-ipaddr/archive/2.4.0.tar.gz;
    sha256 = "0g7qg35w3vzcg37798rhbx7iia83286md3gj5gdhs1qgizlg56wx";
  };

  buildInputs = [ocaml findlib];

  createFindlibDestdir = true;
  
}