Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / ocaml-modules / fileutils / default.nix
blob832da7d3dc15678869eb61316f249d2486af565d
1 { lib, fetchurl, ocaml, buildDunePackage, seq, stdlib-shims, ounit2 }:
3 buildDunePackage rec {
4   pname = "fileutils";
5   version = "0.6.4";
7   src = fetchurl {
8     url = "https://github.com/gildor478/ocaml-fileutils/releases/download/v${version}/fileutils-${version}.tbz";
9     hash = "sha256-enu2vGo2tuvawrTkap6bENNmxaLUQXpfHWih+7oKRF8=";
10   };
12   minimalOCamlVersion = "4.03";
14   propagatedBuildInputs = [
15     seq
16     stdlib-shims
17   ];
19   checkInputs = [
20     ounit2
21   ];
22   doCheck = lib.versionAtLeast ocaml.version "4.08";
24   meta = with lib; {
25     description = "OCaml API to manipulate real files (POSIX like) and filenames";
26     homepage = "https://github.com/gildor478/ocaml-fileutils";
27     license = licenses.lgpl21Plus;
28     maintainers = with maintainers; [ vbgl ];
29   };