stdenv: fix documentation for stripAllFlags and stripDebugFlags (#352127)
[NixPkgs.git] / pkgs / development / ocaml-modules / magic / default.nix
bloba6bd0eb2a033309ef34d9f4644249a3f2d370a92
2   lib,
3   stdenv,
4   fetchFromGitHub,
5   ocaml,
6   findlib,
7   which,
8   file,
9 }:
11 stdenv.mkDerivation rec {
12   pname = "magic";
13   version = "0.7.3";
15   src = fetchFromGitHub {
16     owner = "Chris00";
17     repo = "ocaml-magic";
18     rev = "510c473d222a3d3d900b8ae1892d13e0d49d08be"; # no tags in repo
19     sha256 = "0qks3v51xvzxhidai414mbszxhcl8wg8g7zxd04qi260433g77yg";
20   };
22   createFindlibDestdir = true;
24   nativeBuildInputs = [ which ];
25   buildInputs = [
26     ocaml
27     findlib
28   ];
29   propagatedBuildInputs = [ file ];
31   meta = with lib; {
32     homepage = "https://github.com/Chris00/ocaml-magic";
33     description = "Bindings for libmagic";
34     license = licenses.lgpl21Plus;
35     maintainers = with maintainers; [ dandellion ];
36   };