biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / ocaml-modules / timedesc / default.nix
blobb77f5af17b408502afecf1cd2e8fd6012683616e
1 { lib
2 , fetchurl
3 , buildDunePackage
4 , angstrom
5 , ptime
6 , seq
7 , timedesc-tzdb
8 , timedesc-tzlocal
9 }:
11 buildDunePackage rec {
12   pname = "timedesc";
13   version = "2.0.0";
15   src = fetchurl {
16     url = "https://github.com/daypack-dev/timere/releases/download/timedesc-${version}/timedesc-${version}.tar.gz";
17     hash = "sha256-NnnQpWOE1mt/F5lkWRPdDwpqXCUlcNi+Z5GE6YQQLK8=";
18   };
20   sourceRoot = ".";
22   propagatedBuildInputs = [
23     angstrom
24     ptime
25     seq
26     timedesc-tzdb
27     timedesc-tzlocal
28   ];
30   meta = {
31     description = "OCaml date time handling library";
32     homepage = "https://github.com/daypack-dev/timere";
33     license = lib.licenses.mit;
34     maintainers = [ lib.maintainers.vbgl ];
35   };