about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules
diff options
context:
space:
mode:
authorNiols <niols@niols.fr>2023-06-07 14:51:16 +0200
committerVincent Laporte <vbgl@users.noreply.github.com>2023-06-08 14:51:17 +0200
commit926314334a782ccc3ae88ea771d02d5c87d2a8d9 (patch)
tree54d883936963e6e41d7a3ed5b61355d59b88b803 /pkgs/development/ocaml-modules
parent4f40a8bdb4ea298ae2a4937e78b9c97d0d9cdd97 (diff)
downloadnixlib-926314334a782ccc3ae88ea771d02d5c87d2a8d9.tar
nixlib-926314334a782ccc3ae88ea771d02d5c87d2a8d9.tar.gz
nixlib-926314334a782ccc3ae88ea771d02d5c87d2a8d9.tar.bz2
nixlib-926314334a782ccc3ae88ea771d02d5c87d2a8d9.tar.lz
nixlib-926314334a782ccc3ae88ea771d02d5c87d2a8d9.tar.xz
nixlib-926314334a782ccc3ae88ea771d02d5c87d2a8d9.tar.zst
nixlib-926314334a782ccc3ae88ea771d02d5c87d2a8d9.zip
headache: move from ocamlPackages to top-level
Diffstat (limited to 'pkgs/development/ocaml-modules')
-rw-r--r--pkgs/development/ocaml-modules/headache/default.nix24
1 files changed, 0 insertions, 24 deletions
diff --git a/pkgs/development/ocaml-modules/headache/default.nix b/pkgs/development/ocaml-modules/headache/default.nix
deleted file mode 100644
index cb36d87f87f0..000000000000
--- a/pkgs/development/ocaml-modules/headache/default.nix
+++ /dev/null
@@ -1,24 +0,0 @@
-{ 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 ];
-  };
-}