567e8dfd8e
This commit was created by a combination of scripts and tools: - an ast-grep script to prefix things in meta with `lib.`, - a modified nixf-diagnose / nixf combination to remove unused `with lib;`, and - regular nixfmt. Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
27 lines
520 B
Nix
27 lines
520 B
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
buildDunePackage,
|
|
}:
|
|
|
|
buildDunePackage rec {
|
|
pname = "pprint";
|
|
version = "20230830";
|
|
|
|
minimalOCamlVersion = "4.03";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "fpottier";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "sha256-avf71vAgCL1MU8O7Q3FNN3wEdCDtbNZP0ipETnn8AqA=";
|
|
};
|
|
|
|
meta = {
|
|
inherit (src.meta) homepage;
|
|
description = "OCaml library for pretty-printing textual documents";
|
|
license = lib.licenses.lgpl2Only;
|
|
maintainers = [ lib.maintainers.vbgl ];
|
|
};
|
|
}
|