nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at fix-function-merge 22 lines 555 B view raw
1{ lib, fetchFromGitHub, buildDunePackage }: 2 3buildDunePackage rec { 4 pname = "syslog"; 5 version = "2.0.2"; 6 7 minimalOCamlVersion = "4.03"; 8 9 src = fetchFromGitHub { 10 owner = "geneanet"; 11 repo = "ocaml-syslog"; 12 rev = "v${version}"; 13 hash = "sha256-WybNZBPhv4fhjzzb95E+6ZHcZUnfROLlNF3PMBGO9ys="; 14 }; 15 16 meta = with lib; { 17 homepage = "https://github.com/geneanet/ocaml-syslog"; 18 description = "Simple wrapper to access the system logger from OCaml"; 19 license = licenses.lgpl21Plus; 20 maintainers = [ maintainers.rixed ]; 21 }; 22}