mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 21:03:15 +00:00
29 lines
654 B
Nix
29 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 ];
|
|
};
|
|
}
|