nixpkgs/pkgs/tools/misc/ledit/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

39 lines
850 B
Nix
Raw Normal View History

2023-08-11 19:09:11 +00:00
{ lib, stdenv, fetchFromGitHub, ocamlPackages }:
stdenv.mkDerivation {
pname = "ledit";
2023-08-11 19:09:11 +00:00
version = "2.06";
2023-08-11 19:09:11 +00:00
src = fetchFromGitHub {
owner = "chetmurthy";
repo = "ledit";
rev = "3dbd668d9c69aab5ccd61f6b906c14122ae3271d";
hash = "sha256-9+isvwOw5Iw5OToztqZ5PiQPj6Pxl2ZqAC7UMF+tCM4=";
};
preBuild = ''
2023-08-11 19:09:11 +00:00
substituteInPlace Makefile --replace /bin/rm rm --replace /usr/local/ $out/
'';
strictDeps = true;
2023-08-11 19:09:11 +00:00
nativeBuildInputs = with ocamlPackages; [
ocaml
2023-08-11 19:09:11 +00:00
findlib
camlp5
];
2023-08-11 19:09:11 +00:00
buildInputs = with ocamlPackages; [
camlp5
camlp-streams
];
meta = with lib; {
homepage = "http://pauillac.inria.fr/~ddr/ledit/";
description = "A line editor, allowing to use shell commands with control characters like in emacs";
license = licenses.bsd3;
maintainers = [ maintainers.delta ];
};
}