nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 32 lines 574 B view raw
1{ 2 lib, 3 buildDunePackage, 4 fetchFromGitLab, 5 sedlex, 6 xtmpl, 7}: 8 9buildDunePackage rec { 10 pname = "higlo"; 11 version = "0.10.0"; 12 13 src = fetchFromGitLab { 14 domain = "framagit.org"; 15 owner = "zoggy"; 16 repo = "higlo"; 17 rev = version; 18 hash = "sha256-A5Su4+eBOq/WNdY/3EBQ3KqrRQuaCI1x25cEuoZp4Mo="; 19 }; 20 21 propagatedBuildInputs = [ 22 sedlex 23 xtmpl 24 ]; 25 26 meta = { 27 description = "OCaml library for syntax highlighting"; 28 inherit (src.meta) homepage; 29 license = lib.licenses.lgpl3; 30 maintainers = with lib.maintainers; [ regnat ]; 31 }; 32}