mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
af504e45b3
This project provides a Mmap.map_file function for mapping files in memory.
19 lines
494 B
Nix
19 lines
494 B
Nix
{ lib, buildDunePackage, fetchurl }:
|
|
|
|
buildDunePackage rec {
|
|
pname = "mmap";
|
|
version = "1.1.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/mirage/mmap/releases/download/v${version}/mmap-v${version}.tbz";
|
|
sha256 = "0l6waidal2n8mkdn74avbslvc10sf49f5d889n838z03pra5chsc";
|
|
};
|
|
|
|
meta = {
|
|
homepage = "https://github.com/mirage/mmap";
|
|
description = "Function for mapping files in memory";
|
|
license = lib.licenses.lgpl21;
|
|
maintainers = [ lib.maintainers.vbgl ];
|
|
};
|
|
}
|