f5fa5fa4d6
* pkgs: refactor needless quoting of homepage meta attribute A lot of packages are needlessly quoting the homepage meta attribute (about 1400, 22%), this commit refactors all of those instances. * pkgs: Fixing some links that were wrongfully unquoted in the previous commit * Fixed some instances
38 lines
1.0 KiB
Nix
38 lines
1.0 KiB
Nix
{ stdenv, fetchzip, ocaml, findlib, ocpBuild, opam, cmdliner }:
|
|
|
|
let inherit (stdenv.lib) getVersion versionAtLeast; in
|
|
|
|
assert versionAtLeast (getVersion ocaml) "3.12.1";
|
|
assert versionAtLeast (getVersion ocpBuild) "1.99.6-beta";
|
|
assert versionAtLeast "0.9.8" (getVersion cmdliner);
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "ocp-indent-1.5.2";
|
|
|
|
src = fetchzip {
|
|
url = "https://github.com/OCamlPro/ocp-indent/archive/1.5.2.tar.gz";
|
|
sha256 = "0ynv2yhm7akpvqp72pdabhddwr352s1k85q8m1khsvspgg1mkiqz";
|
|
};
|
|
|
|
nativeBuildInputs = [ ocpBuild opam ];
|
|
|
|
buildInputs = [ ocaml findlib cmdliner ];
|
|
|
|
createFindlibDestdir = true;
|
|
|
|
preConfigure = "patchShebangs ./install.sh";
|
|
|
|
postInstall = ''
|
|
mv $out/lib/{ocp-indent,ocaml/${getVersion ocaml}/site-lib/}
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://typerex.ocamlpro.com/ocp-indent.html;
|
|
description = "A customizable tool to indent OCaml code";
|
|
license = licenses.gpl3;
|
|
platforms = ocaml.meta.platforms or [];
|
|
maintainers = [ maintainers.jirkamarsik ];
|
|
};
|
|
}
|