1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-23 14:11:36 +00:00

ocamlPackages.mstruct: remove at 1.4.0

This commit is contained in:
Vincent Laporte 2020-11-09 08:26:31 +01:00 committed by Vincent Laporte
parent 5c816b9f1a
commit 10fc2a3ac9
2 changed files with 0 additions and 26 deletions

View file

@ -1,24 +0,0 @@
{ stdenv, fetchFromGitHub, buildDunePackage, cstruct }:
buildDunePackage rec {
pname = "mstruct";
version = "1.4.0";
minimumOCamlVersion = "4.02";
src = fetchFromGitHub {
owner = "mirage";
repo = "ocaml-${pname}";
rev = "v${version}";
sha256 = "1p4ygwzs3n1fj4apfib0z0sabpph21bkq1dgjk4bsa59pq4prncm";
};
propagatedBuildInputs = [ cstruct ];
meta = {
description = "A thin mutable layer on top of cstruct";
license = stdenv.lib.licenses.isc;
maintainers = [ stdenv.lib.maintainers.vbgl ];
inherit (src.meta) homepage;
};
}

View file

@ -599,8 +599,6 @@ let
mparser = callPackage ../development/ocaml-modules/mparser { };
mstruct = callPackage ../development/ocaml-modules/mstruct { };
mtime = callPackage ../development/ocaml-modules/mtime { };
mustache = callPackage ../development/ocaml-modules/mustache { };