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