lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 22.05-pre 27 lines 678 B view raw
1{ lib, stdenv, fetchFromGitHub, ocaml, findlib 2, easy-format 3}: 4 5stdenv.mkDerivation rec { 6 name = "ocaml${ocaml.version}-dum-${version}"; 7 version = "1.0.1"; 8 9 src = fetchFromGitHub { 10 owner = "mjambon"; 11 repo = "dum"; 12 rev = "v${version}"; 13 sha256 = "0yrxl97szjc0s2ghngs346x3y0xszx2chidgzxk93frjjpsr1mlr"; 14 }; 15 16 buildInputs = [ ocaml findlib ]; 17 propagatedBuildInputs = [ easy-format ]; 18 19 createFindlibDestdir = true; 20 21 meta = with lib; { 22 homepage = "https://github.com/mjambon/dum"; 23 description = "Inspect the runtime representation of arbitrary OCaml values"; 24 license = licenses.lgpl21Plus; 25 maintainers = [ maintainers.alexfmpe ]; 26 }; 27}