mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
8e3d4ec580
Ensures compatibility with OCaml 4.08
23 lines
571 B
Nix
23 lines
571 B
Nix
{ lib, fetchFromGitHub, buildDunePackage, owee }:
|
|
|
|
buildDunePackage rec {
|
|
pname = "spacetime_lib";
|
|
version = "0.3.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "lpw25";
|
|
repo = "spacetime_lib";
|
|
rev = version;
|
|
sha256 = "0biisgbycr5v3nm5jp8i0h6vq76vzasdjkcgh8yr7fhxc81jgv3p";
|
|
};
|
|
|
|
propagatedBuildInputs = [ owee ];
|
|
|
|
meta = {
|
|
description = "An OCaml library providing some simple operations for handling OCaml “spacetime” profiles";
|
|
inherit (src.meta) homepage;
|
|
license = lib.licenses.mit;
|
|
maintainers = [ lib.maintainers.vbgl ];
|
|
};
|
|
}
|