nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 24 lines 402 B view raw
1{ 2 lib, 3 buildDunePackage, 4 reason, 5 src, 6}: 7 8buildDunePackage { 9 inherit src; 10 11 pname = "utf8"; 12 version = "0.1.0-unstable-2024-05-07"; 13 14 nativeBuildInputs = [ 15 reason 16 ]; 17 18 meta = { 19 description = "Utf8 logic with minimal dependencies"; 20 downloadPage = "https://github.com/reasonml/reason-native/tree/master/src/utf8"; 21 license = lib.licenses.mit; 22 maintainers = [ ]; 23 }; 24}