nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 25 lines 561 B view raw
1{ 2 lib, 3 buildDunePackage, 4 fetchurl, 5}: 6 7buildDunePackage (finalAttrs: { 8 pname = "vector"; 9 version = "1.0.0"; 10 11 src = fetchurl { 12 url = "https://github.com/backtracking/vector/releases/download/${finalAttrs.version}/vector-${finalAttrs.version}.tbz"; 13 hash = "sha256-8hLR1pPON96w2iVQqrjVUK1epFfFdX3AL4yopm6+ZkE="; 14 }; 15 16 doCheck = true; 17 18 meta = { 19 description = "Resizable arrays for OCaml"; 20 license = lib.licenses.lgpl2Only; 21 homepage = "https://github.com/backtracking/vector"; 22 maintainers = [ lib.maintainers.vbgl ]; 23 }; 24 25})