mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-27 02:34:53 +00:00
28 lines
557 B
Nix
28 lines
557 B
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
buildDunePackage,
|
|
apron,
|
|
}:
|
|
|
|
buildDunePackage (finalAttrs: {
|
|
pname = "apronext";
|
|
version = "1.0.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ghilesZ";
|
|
repo = "apronext";
|
|
rev = "39610de5930e12c8d0156ed2d55fedc220f1e77d";
|
|
hash = "sha256-K19hmvyI1RJlKv24VJustDfkGTdrW4PcR8xif/y/giQ=";
|
|
};
|
|
|
|
propagatedBuildInputs = [ apron ];
|
|
|
|
meta = {
|
|
license = lib.licenses.asl20;
|
|
homepage = "https://github.com/ghilesZ/apronext";
|
|
description = "Extension for the OCaml interface of the apron library";
|
|
};
|
|
|
|
})
|