about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/metadata/default.nix
blob: 9a8414de75d4280d43a1ac2ecc1dcc43c46b2809 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ lib, buildDunePackage, fetchFromGitHub }:

buildDunePackage rec {
  pname = "metadata";
  version = "0.3.0";

  src = fetchFromGitHub {
    owner = "savonet";
    repo = "ocaml-metadata";
    rev = "v${version}";
    sha256 = "sha256-SQ8fNl62fvoCgbIt0axQyE3Eqwl8EOtYiz3xN96al+g=";
  };

  minimalOCamlVersion = "4.14";

  meta = with lib; {
    homepage = "https://github.com/savonet/ocaml-metadata";
    description = "Library to read metadata from files in various formats. ";
    license = licenses.gpl3Plus;
    maintainers = with maintainers; [ dandellion ];
  };
}