depot/third_party/nixpkgs/pkgs/development/ocaml-modules/headache/default.nix
Default email 87f9c27ba9 Project import generated by Copybara.
GitOrigin-RevId: fe2ecaf706a5907b5e54d979fbde4924d84b65fc
2023-04-12 14:48:02 +02:00

24 lines
593 B
Nix

{ lib, buildDunePackage, fetchFromGitHub, camomile }:
buildDunePackage rec {
pname = "headache";
version = "1.06";
src = fetchFromGitHub {
owner = "frama-c";
repo = pname;
rev = "v${version}";
sha256 = "sha256-BA7u09MKYMyspFX8AcAkDVA6UUG5DKAdbIDdt+b3Fc4=";
};
duneVersion = "3";
propagatedBuildInputs = [ camomile ];
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 ];
};
}