nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 22 lines 592 B view raw
1{ 2 lib, 3 buildDunePackage, 4 fetchurl, 5}: 6 7buildDunePackage (finalAttrs: { 8 pname = "bigarray-compat"; 9 version = "1.1.0"; 10 11 src = fetchurl { 12 url = "https://github.com/mirage/bigarray-compat/releases/download/v${finalAttrs.version}/bigarray-compat-${finalAttrs.version}.tbz"; 13 hash = "sha256-Q0RppI1chOgNYhsT2V6wZ/gTjBZQof1a5gCaGbk3GNU="; 14 }; 15 16 meta = { 17 description = "Compatibility library to use Stdlib.Bigarray when possible"; 18 homepage = "https://github.com/mirage/bigarray-compat"; 19 license = lib.licenses.isc; 20 maintainers = [ lib.maintainers.vbgl ]; 21 }; 22})