depot/third_party/nixpkgs/pkgs/development/tools/headache/default.nix
Default email 5e7c2d6cef Project import generated by Copybara.
GitOrigin-RevId: f99e5f03cc0aa231ab5950a15ed02afec45ed51a
2023-10-09 21:29:22 +02:00

28 lines
654 B
Nix

{ lib, fetchFromGitHub, nix-update-script, ocamlPackages }:
with ocamlPackages;
buildDunePackage rec {
pname = "headache";
version = "1.07";
src = fetchFromGitHub {
owner = "frama-c";
repo = pname;
rev = "v${version}";
sha256 = "sha256-RL80ggcJSJFu2UTECUNP6KufRhR8ZnG7sQeYzhrw37g=";
};
propagatedBuildInputs = [
camomile
];
passthru.updateScript = nix-update-script { };
meta = with lib; {
homepage = "https://github.com/frama-c/${pname}";
description = "Lightweight tool for managing headers in source code files";
license = licenses.lgpl2Plus;
maintainers = with maintainers; [ niols ];
};
}