nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 34 lines 688 B view raw
1{ 2 lib, 3 buildDunePackage, 4 fetchurl, 5 lwt, 6 duration, 7 mirage-runtime, 8}: 9 10buildDunePackage rec { 11 pname = "mirage-unix"; 12 version = "5.0.1"; 13 14 duneVersion = "3"; 15 16 src = fetchurl { 17 url = "https://github.com/mirage/${pname}/releases/download/v${version}/${pname}-${version}.tbz"; 18 hash = "sha256-U1oLznUDBcJLcVygfSiyl5qRLDM27cm/WrjT0vSGhPg="; 19 }; 20 21 propagatedBuildInputs = [ 22 lwt 23 duration 24 mirage-runtime 25 ]; 26 doCheck = true; 27 28 meta = { 29 homepage = "https://github.com/mirage/mirage-unix"; 30 description = "Unix core platform libraries for MirageOS"; 31 license = lib.licenses.isc; 32 maintainers = with lib.maintainers; [ sternenseemann ]; 33 }; 34}